2.3.2 USR_MLME_SetConf callback Function

C

void USR_MLME_SetConf(uint8_t status, uint8_t PIBAttribute)

Summary

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

Description

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

Precondition

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

Parameters

ParamDescription
statusResult of requested PIB attribute set operation
PIBAttributeUpdated PIB attribute

Returns

None.

Example

void USR_MLME_SetConf(uint8_t status, uint8_t PIBAttribute);
{
    status = status;
    PIBAttribute = PIBAttribute;
}

Remarks

There is weak function for this callback. User has to define own implementation for required operation on the reception of particular callback.