Tool/software:
We are working on LPDS, what are the limits on modifying parameters?
Because when modifying the parameters, the parameter setting is greater than 60s, the LPDS time is wrong.
/*If low power mode is enabled, call the Power Framework with frame idle time */
if(gMmwMssMCB.lowPowerMode == LOW_PWR_MODE_ENABLE)
{
/* Radar Power Management Framework driver call for getting to Low Power State */
Power_idleFunc(slpTimeus);
Power_disablePolicy();
/* Based on idle time left, different low power modes like LPDS, Idle can be taken */
demoLowPwrStateTaken = Power_getLowPowModeTaken();
if(demoLowPwrStateTaken == POWER_NONE)
{
/* Use Low Power config only when there is sufficient time. */
CLI_write("Error: No Sufficient Time for getting into Low Power Modes.\n");
DebugP_assert(0);
}
}