FSK packet handle. More...
#include <LoRaRadio.h>
| Data Fields | |
| uint8_t | preamble_detected | 
| Set to true (1) when a Preamble is detected, otherwise false (0).  More... | |
| uint8_t | sync_word_detected | 
| Set to true (1) when a SyncWord is detected, otherwise false (0).  More... | |
| int16_t | rssi_value | 
| Storage for RSSI value of the received signal.  More... | |
| int32_t | afc_value | 
| Automated frequency correction value.  More... | |
| uint8_t | rx_gain | 
| LNA gain value (dbm).  More... | |
| uint16_t | size | 
| Size of the received data in bytes.  More... | |
| uint16_t | nb_bytes | 
| Keeps track of number of bytes already read from the RX FIFO.  More... | |
| uint8_t | fifo_thresh | 
| Stores the FIFO threshold value.  More... | |
| uint8_t | chunk_size | 
| Defines the size of a chunk of outgoing buffer written to the FIFO at a unit time.  More... | |
FSK packet handle.
Contains information about an FSK packet and various metadata.
Definition at line 189 of file LoRaRadio.h.
| int32_t afc_value | 
Automated frequency correction value.
Definition at line 208 of file LoRaRadio.h.
| uint8_t chunk_size | 
Defines the size of a chunk of outgoing buffer written to the FIFO at a unit time.
For example, if the size of the data exceeds the FIFO limit, a certain sized chunk is written to the FIFO. Later, a FIFO-level interrupt enables writing of the remaining data to the FIFO chunk by chunk until transmission is complete.
Definition at line 237 of file LoRaRadio.h.
| uint8_t fifo_thresh | 
Stores the FIFO threshold value.
Definition at line 228 of file LoRaRadio.h.
| uint16_t nb_bytes | 
Keeps track of number of bytes already read from the RX FIFO.
Definition at line 223 of file LoRaRadio.h.
| uint8_t preamble_detected | 
Set to true (1) when a Preamble is detected, otherwise false (0).
Definition at line 193 of file LoRaRadio.h.
| int16_t rssi_value | 
Storage for RSSI value of the received signal.
Definition at line 203 of file LoRaRadio.h.
| uint8_t rx_gain | 
LNA gain value (dbm).
Definition at line 213 of file LoRaRadio.h.
| uint16_t size | 
Size of the received data in bytes.
Definition at line 218 of file LoRaRadio.h.
| uint8_t sync_word_detected | 
Set to true (1) when a SyncWord is detected, otherwise false (0).
Definition at line 198 of file LoRaRadio.h.