2.5.2 USR_MLME_StartConf callback Function
C
void USR_MLME_StartConf(uint8_t status)
Summary
Callback function that must be implemented by application (NHLE) for MAC service MLME-START.confirm.
Description
This function implemented by application (NHLE) for MAC service MLME-START.confirm.
Precondition
WPAN_Init() should have been called before calling this function.
Parameters
Param | Description |
---|---|
status | Result of requested start operation |
Returns
None.
Example
void USR_MLME_StartConf(uint8_t status)
{
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.