1.3.5.4.27 CL_NULL_PMlmeSetRequest Function
C
void CL_NULL_MlmeSetRequest
(
uint16_t pibAttrib,
void *pibValue,
uint8_t pibSize
);
Summary
Set a new value for a given PIB attribute of the MAC layer.
Description
This routine is used to set a new value for a given PIB attribute of the MAC layer.
Precondition
The CL_NULL_Initialize routine must have been called before.
Parameters
Param | Description |
---|---|
pibAttrib | PIB attribute |
pibValue | PIB attribute value |
pibSize | PIB attribute value size |
Returns
None.
Example
uint8_t bandSearchTime = 25;
CL_NULL_MlmeSetRequest(PIB_MAC_MIN_BAND_SEARCH_TIME, &bandSearchTime, sizeof(bandSearchTime);
Remarks
The result of the request is returned in the confirm callback.