1.5.4.27 AL_RX_STATUS Enum
C
typedef enum
{
AL_RX_STATUS_SUCCESS = 0x00,
AL_RX_STATUS_ERROR_BAD_LEN = 0x01,
AL_RX_STATUS_ERROR_AES_CMAC = 0x02,
AL_RX_STATUS_ERROR_AES_DECRYPT = 0x03,
AL_RX_STATUS_ERROR_AES_NO_KEY = 0x04,
AL_RX_STATUS_ERROR_BAD_TMAC = 0x05,
} AL_RX_STATUS;
Summary
Reception results defined in AL layer.
Description
This enumeration identifies the possible Reception result values:
- 0x00 - Success
- 0x01 - Invalid frame length
- 0x02 - Authentication error
- 0x03 - Decryption error (AES-ECB)
- 0x04 - Invalid Key for Decrypt
- 0x05 - Authentication error
Remarks
None.
