1.3.2.3.8 MAC_WRP_DataConfirm Typedef
C
typedef void (*MAC_WRP_DataConfirm)(MAC_WRP_DATA_CONFIRM_PARAMS *dcParams);
Summary
Pointer to a Data Confirm Event handler function.
Description
This data type defines the required function signature for the MAC Wrapper Data Confirm event handling callback function. A client must register a pointer using the event handling function whose function signature (parameter and return value types) matches the types specified by this function pointer in order to receive Data Confirm events back from module.
Parameters
Param | Description |
---|---|
dcParams | Pointer to structure containing parameters related to Confirm. See MAC_WRP_DATA_CONFIRM_PARAMS |
Returns
None.
Example
App_DataConfirm(MAC_WRP_DATA_CONFIRM_PARAMS *params) { // Check result if (params->status == MAC_WRP_STATUS_SUCCESS) { txHandler = params->msduHandle; // Dispatch according to handler } }
Remarks
None.