1.3.3.15 PAL_RX_PARAMS Struct

C

typedef struct
{
    /* Frame duration referred to 1us PHY counter (Preamble + FCH + Payload) */
    uint32_t frameDuration;
    /* SNR of the header in quarters of dB (sQ13.2) */
    int16_t snrHeader;
    /* SNR of the payload in quarters of dB (sQ13.2) */
    int16_t snrPayload;
    /* NB frame (ZC info). Difference between last ZC time and payload initial time, scaled to 0-254. Value = 255: ZC not available */
    uint8_t nbRx;
    /* Link Quality */
    uint8_t lqi;
    /* Reception RSSI in dBuV */
    uint8_t rssi;

} PAL_RX_PARAMS;

Summary

Holds PAL reception parameters.

Description

This data type defines the fields containing Rx parameters for last frame.

Remarks

None.