1#ifndef INCLUDED_LORA_HAMMING_ENC_IMPL_H
2#define INCLUDED_LORA_HAMMING_ENC_IMPL_H
53 int work(
int noutput_items, gr_vector_const_void_star &input_items,
54 gr_vector_void_star &output_items);
Definition: hamming_enc_impl.h:9
hamming_enc_impl(uint8_t cr, uint8_t sf)
Construct a new hamming enc impl object.
~hamming_enc_impl()
Destroy the hamming enc impl object.
int work(int noutput_items, gr_vector_const_void_star &input_items, gr_vector_void_star &output_items)
Main function that does the actual hamming encoding. With cr : coding rate, and sf : spreading factor...
Add hamming code to the to be sent playload. This means extra party bits are added to the payload to ...
Definition: hamming_enc.h:39