3.2.9 MCPS_DataConf_t Struct
C
typedef struct mcps_data_conf_tag { /** This identifies the message as \ref MCPS_DATA_CONFIRM */ enum msg_code cmdcode; /** The handle associated with the MSDU being confirmed. */ uint8_t msduHandle; /** The status of the last MSDU transmission. */ uint8_t status; #ifdef ENABLE_TSTAMP /** Optional. The time, in symbols, at which the data were transmitted. The * value of this parameter will be considered valid only if the value of the * status parameter is MAC_SUCCESS, if the status parameter is not equal to * MAC_SUCCESS, the value of the Timestamp parameter shall not be used for * any other purpose. The symbol boundary is described by macSyncSymbolOffset * This is a 24-bit value, and the precision of this value shall be minimum * of 20 bits, with the lowest 4 bits being the least significant. */ uint32_t Timestamp; #endif } MCPS_DataConf_t;
Summary
MCPS_DataConf_t holds the MCPS-DATA.confirm message structure
Description
None
Remarks
None