2.2.2 USR_MLME_ResetConf callback Function

C

void USR_MLME_ResetConf(uint8_t status)

Summary

Callback function that must be implemented by application (NHLE) for MAC service MLME-RESET.confirm.

Description

This function implemented by application (NHLE) for MAC service MLME-RESET.confirm.

Precondition

WPAN_Init() should have been called before calling this function.

Parameters

ParamDescription
statusResult of requested reset operation

Returns

None.

Example

void USR_MLME_ResetConf(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.