1.3.3.1.3 MAC_DATA_CONFIRM_PARAMS Struct

C

typedef struct
{
    /* Transmission time, refered to MAC milliseconds counter */
    MAC_TIMESTAMP timestamp;
    /* The handle associated with the MSDU being confirmed */
    uint8_t msduHandle;
    /* The result of the last MSDU transmission */
    MAC_STATUS status;
} MAC_DATA_CONFIRM_PARAMS;

Summary

Defines the Parameters for the MAC Data Confirm event handler function.

Description

The structure contains the fields reported by the MAC Data Confirm event handler function.

Field description:

  • timestamp. Transmission time, refered to MAC milliseconds counter.

  • msduHandle. The handle associated with the MSDU being confirmed.

  • status. The result of the last MSDU transmission.

Remarks

None.