blob: edaaf2ff0eec868ee47bef1facc1a0961313d2d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
/* -*- c++ -*- */
/*
* Copyright 2020 Free Software Foundation, Inc.
*
* This file is part of GNU Radio
*
* SPDX-License-Identifier: GPL-3.0-or-later
*
*/
#ifndef INCLUDED_CORRECTIQ_CORRECTIQ_MAN_IMPL_H
#define INCLUDED_CORRECTIQ_CORRECTIQ_MAN_IMPL_H
#include <gnuradio/blocks/correctiq_man.h>
namespace gr {
namespace blocks {
class correctiq_man_impl : public correctiq_man
{
private:
float d_avg_real;
float d_avg_img;
gr_complex d_k;
int d_buffer_size;
gr_complex* d_volk_const_buffer;
void set_const_buffer(int new_size);
void fill_const_buffer();
public:
correctiq_man_impl(float real, float imag);
~correctiq_man_impl();
virtual float get_real();
virtual float get_imag();
virtual void set_real(float new_value);
virtual void set_imag(float new_value);
void handle_real(pmt::pmt_t msg);
void handle_imag(pmt::pmt_t msg);
int work(int noutput_items,
gr_vector_const_void_star& input_items,
gr_vector_void_star& output_items);
};
} // namespace blocks
} // namespace gr
#endif /* INCLUDED_CORRECTIQ_CORRECTIQ_MAN_IMPL_H */
|