pub struct RxInfo {
pub len: usize,
pub rssi: i16,
pub snr: Snr,
pub lqi: Option<NonZeroU8>,
}Expand description
Metadata returned with a received frame.
Fields§
§len: usizeNumber of bytes written into the receive buffer.
rssi: i16Received signal strength in dBm.
snr: SnrSignal-to-noise ratio in centibels.
lqi: Option<NonZeroU8>Optional link-quality indicator in a radio-specific normalized scale.