1.3.5.4.17 CL_NULL_PlmeSetRequest Function
C
void CL_NULL_PlmeSetRequest
(
uint16_t pibAttrib,
void *pibValue,
uint8_t pibSize,
uint16_t pch
);
Summary
Set a new value for a given PIB attribute of the PHY layer.
Description
This routine is used to set a new value for a given PIB attribute of the PHY 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 |
pch | Physical channel (v1.4) |
Returns
None.
Example
uint8_t snifferEn = 1;
CL_NULL_PlmeSetRequest(PIB_PHY_SNIFFER_ENABLED, &snifferEn, sizeof(snifferEn), 16);
Remarks
The result of the request is returned in the confirm callback.