1.3.3.10 PAL_SetPhyPib Function
C
PAL_RESULT PAL_SetPhyPib (
DRV_PLC_PHY_PIB_OBJ *pibObj
)
Summary
Sets value of Meters And More PHY PIB attribute.
Description
This routine allows a user to set information to PLC transceiver on PHY information base (PIB).
Parameters
| Param | Description |
|---|---|
|
pibObj |
Pointer to PIB object to indicate the PIB to write. PIB object includes a data buffer to write the new value. |
Returns
Result of set operation as a PAL_RESULT Enum.
Example
DRV_PLC_PHY_PIB_OBJ pibObj;
pibObj.id = PLC_ID_CURRENT_GAIN;
pibObj.length = 1;
pibObj.pData[0] = 0x00;
if (PAL_SetPhyPib(&pibObj) == PAL_RESULT_SUCCESS)
{
}
Remarks
None.
