Mbed OS Reference
Loading...
Searching...
No Matches
radio_events Struct Reference

Reporting functions for upper layers. More...

#include <LoRaRadio.h>

Data Fields

mbed::Callback< void()> tx_done
 Callback when Transmission is done. More...
 
mbed::Callback< void()> tx_timeout
 Callback when Transmission is timed out. More...
 
mbed::Callback< void(const uint8_t *payload, uint16_t size, int16_t rssi, int8_t snr)> rx_done
 Rx Done callback prototype. More...
 
mbed::Callback< void()> rx_timeout
 Callback when Reception is timed out. More...
 
mbed::Callback< void()> rx_error
 Callback when Reception ends up in error. More...
 
mbed::Callback< void(uint8_t current_channel)> fhss_change_channel
 FHSS Change Channel callback prototype. More...
 
mbed::Callback< void(bool channel_busy)> cad_done
 CAD Done callback prototype. More...
 

Detailed Description

Reporting functions for upper layers.

The radio driver reports various vital events to the upper controlling layers using callback functions provided by the upper layers at the initialization phase.

Definition at line 390 of file LoRaRadio.h.

Field Documentation

◆ tx_done

mbed::Callback<void()> tx_done

Callback when Transmission is done.

Definition at line 394 of file LoRaRadio.h.

◆ tx_timeout

mbed::Callback<void()> tx_timeout

Callback when Transmission is timed out.

Definition at line 399 of file LoRaRadio.h.

◆ rx_done

mbed::Callback<void(const uint8_t *payload, uint16_t size, int16_t rssi, int8_t snr)> rx_done

Rx Done callback prototype.


payload : Received buffer pointer.
size : Received buffer size.
rssi : RSSI value computed while receiving the frame [dBm].
snr : Raw SNR value given by the radio hardware. FSK : N/A (set to 0). LoRa: SNR value in dB.

Definition at line 411 of file LoRaRadio.h.

◆ rx_timeout

mbed::Callback<void()> rx_timeout

Callback when Reception is timed out.

Definition at line 416 of file LoRaRadio.h.

◆ rx_error

mbed::Callback<void()> rx_error

Callback when Reception ends up in error.

Definition at line 421 of file LoRaRadio.h.

◆ fhss_change_channel

mbed::Callback<void(uint8_t current_channel)> fhss_change_channel

FHSS Change Channel callback prototype.


current_channel : The index number of the current channel.

Definition at line 428 of file LoRaRadio.h.

◆ cad_done

mbed::Callback<void(bool channel_busy)> cad_done

CAD Done callback prototype.


channel_busy : True, if Channel activity detected.

Definition at line 435 of file LoRaRadio.h.