2.12.2 USR_MLME_OrphanInd callback Function
C
void USR_MLME_OrphanInd(uint64_t OrphanAddress)
Summary
Callback function that must be implemented by application (NHLE) for MAC service MLME-ORPHAN.indication.
Description
This function implemented by application (NHLE) for MAC service MLME-ORPHAN.indication.
Precondition
WPAN_Init() should have been called before calling this function.
Parameters
Param | Description |
---|---|
OrphanAddress | Address of orphaned device |
Returns
None.
Example
void USR_MLME_OrphanInd(uint64_t OrphanAddress)
{
OrphanAddress = OrphanAddress;
}
Remarks
There is weak function for this callback. User has to define own implementation for required operation on the reception of particular callback.