GNU Radio Manual and C++ API Reference  3.10.9.1
The Free & Open Software Radio Ecosystem
correctiq.h
Go to the documentation of this file.
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2020 Free Software Foundation, Inc.
4  *
5  * This file is part of GNU Radio
6  *
7  * SPDX-License-Identifier: GPL-3.0-or-later
8  *
9  */
10 
11 #ifndef INCLUDED_CORRECTIQ_CORRECTIQ_H
12 #define INCLUDED_CORRECTIQ_CORRECTIQ_H
13 
14 #include <gnuradio/blocks/api.h>
15 #include <gnuradio/sync_block.h>
16 
17 namespace gr {
18 namespace blocks {
19 
20 /*!
21  * \brief This block to removes that center frequency IQ DC spike with an IIR filter.
22  * \ingroup iq_correction
23  *
24  */
25 class BLOCKS_API correctiq : virtual public gr::sync_block
26 {
27 public:
28  typedef std::shared_ptr<correctiq> sptr;
29 
30  /*!
31  * \brief Return a shared_ptr to a new instance of correctiq::correctiq.
32  *
33  * To avoid accidental use of raw pointers, correctiq::correctiq's
34  * constructor is in a private implementation
35  * class. correctiq::correctiq::make is the public interface for
36  * creating new instances.
37  */
38  static sptr make();
39 };
40 
41 } // namespace blocks
42 } // namespace gr
43 
44 #endif /* INCLUDED_CORRECTIQ_CORRECTIQ_H */
This block to removes that center frequency IQ DC spike with an IIR filter.
Definition: correctiq.h:26
static sptr make()
Return a shared_ptr to a new instance of correctiq::correctiq.
std::shared_ptr< correctiq > sptr
Definition: correctiq.h:28
synchronous 1:1 input to output with history
Definition: sync_block.h:26
#define BLOCKS_API
Definition: gr-blocks/include/gnuradio/blocks/api.h:18
GNU Radio logging wrapper.
Definition: basic_block.h:29