2.3.21 PHY_ConfigRxRPCMode Function
C
PHY_Retval_t PHY_ConfigRxRPCMode(uint8_t rxRPCEnable)
Summary
Configures the reduced power consumption mode
Description
The function is used to configure the reduced power consumption mode of the receiver
Precondition
PHY_Init() should have been called before calling this function.
Parameters
Param | Description |
---|---|
rxRPCEnable | 0x01 - To Enable the rxRPC mode |
0x00 - To disable the rx RPC mode |
Returns
PHY_SUCCESS If trx is configured correctly PHY_FAILURE otherwise
Example
PHY_Retval_t retVal = PHY_FAILURE;
uint8_t rxRPCEnable = 0x01;
retVal = PHY_ConfigRxRPCMode(rxRPCEnable);
if(PHY_SUCCESS == retVal)
{
//Trx is configured to reduced power consumption mode
}
Remarks
None