GNU Radio's LORA_SDR Package
gray_demap_impl.h
Go to the documentation of this file.
1 #ifndef INCLUDED_LORA_GRAY_DEMAP_IMPL_H
2 #define INCLUDED_LORA_GRAY_DEMAP_IMPL_H
3 
4 
5 #include <lora_sdr/gray_demap.h>
6 
7 namespace gr {
8  namespace lora_sdr {
9 
10  class gray_demap_impl : public gray_demap
11  {
12  private:
13  uint8_t m_sf;
14 
15  public:
16  gray_demap_impl(uint8_t sf);
18  void set_sf(uint8_t sf);
19 
20  int work(
21  int noutput_items,
22  gr_vector_const_void_star &input_items,
23  gr_vector_void_star &output_items
24  );
25  };
26  } // namespace lora
27 } // namespace gr
28 
29 #endif /* INCLUDED_LORA_GRAY_DEMAP_IMPL_H */
int work(int noutput_items, gr_vector_const_void_star &input_items, gr_vector_void_star &output_items)
Definition: add_crc.h:28
<+description of block+>
Definition: gray_demap.h:36
Definition: gray_demap_impl.h:10