2.10.2 USR_MCPS_PurgeConf callback Function
C
void USR_MCPS_PurgeConf(uint8_t msduHandle, uint8_t status)Summary
Callback function that must be implemented by application (NHLE) for MAC service MCPS-PURGE.confirm.
Description
This function implemented by application (NHLE) for MAC service MCPS-PURGE.confirm.
Precondition
WPAN_Init() should have been called before calling this function.
Parameters
| Param | Description |
|---|---|
| msduHandle | Handle (id) of MSDU to be purged |
| status | Result of requested purge operation |
Returns
None.
Example
void USR_MCPS_PurgeConf(uint8_t msduHandle, uint8_t status)
{
msduHandle = msduHandle;
status = status;
}Remarks
There is weak function for this callback. User has to define own implementation for required operation on the reception of particular callback.
