1.1.3.4.40 DRV_RF215_RX_INDICATION_OBJ Struct
C
typedef struct
{
/* RX time (PPDU start), referred to system 64-bit time counter */
uint64_t timeIniCount;
/* Pointer to received PSDU data */
uint8_t* psdu;
/* PPDU duration in system time counter units */
uint32_t ppduDurationCount;
/* PSDU length in bytes (including FCS) */
uint16_t psduLen;
/* RSSI in dBm */
int8_t rssiDBm;
/* Modulation scheme for the specific PHY type (FSK or OFDM) */
DRV_RF215_PHY_MOD_SCHEME modScheme;
/* Correct FCS flag */
bool fcsOk;
} DRV_RF215_RX_INDICATION_OBJ;Summary
Defines the data reported in RF215 RX indication.
Description
This data type defines the data reported in the RF215 receive indication (DRV_RF215_RX_IND_CALLBACK).
Remarks
The timeIni parameter is only available if "PHY TX/RX time support" is enabled via MCC.
The fcsOk parameter is only available if "Automatic FCS (Frame Check Sequence)" is enabled via MCC.
