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

ParamDescription
pibAttribPIB attribute
pibValuePIB attribute value
pibSizePIB attribute value size
pchPhysical 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.