1.5.4.16 AL_EVENT_ID Enum

C

typedef enum
{
    AL_EVENT_ID_MAC_ACA = 0,
    AL_EVENT_ID_MASTER_TX_TIMEOUT = 0x20,
} AL_EVENT_ID;

Summary

Identifies the possible AL Event identifiers.

Description

This enumeration identifies the possible AL Event identifiers:
  • 0x00 - Timeout Event from a remote node identified by its ACA
  • 0x20 - Timeout Event raised in Master Node

A timeout from a remote Node occurs when a response is expected and is not received, which means a communication error. In this case, the ACA of node reporting the error is added to Event.

A timeout in Master Node is reported on every transmission, regardless of Response expected or not, or received or not. This means that the reported timeout does not imply a communication error. It is up to application to decide whether a response reception error has occurred when timeout expires.

Remarks

None.