GNU Radio's LORA_SDR Package
gray_mapping_impl.h
Go to the documentation of this file.
1 #ifndef INCLUDED_LORA_GRAY_MAPPING_IMPL_H
2 #define INCLUDED_LORA_GRAY_MAPPING_IMPL_H
3 // #define GRLORA_DEBUG
5 
6 
7 namespace gr {
8  namespace lora_sdr {
9 
11  {
12  private:
13  uint8_t m_sf; ///< Spreading factor
14  bool m_soft_decoding; ///< Hard/Soft decoding
15 
16  public:
17  gray_mapping_impl(bool soft_decoding);
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_MAPPING_IMPL_H */
Definition: gray_mapping_impl.h:11
gray_mapping_impl(bool soft_decoding)
int work(int noutput_items, gr_vector_const_void_star &input_items, gr_vector_void_star &output_items)
<+description of block+>
Definition: gray_mapping.h:37
Definition: add_crc.h:28