Other Parts Discussed in Thread: AWR6843,
Champs,
Does AWRL6432 also support the Dynamic Power Saving feature (rlRfDynamicPowerSave) like as AWR6843?
Best regards,
Hayden
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi Hayden,
The power management framework on AWRL6432 is different than any low power API available on AWR6843. The application note found HERE walks through several strategies to achieve low power on xWRL6432 devices. Further documentation can also be found at: <SDK_ROOT_DIR>/docs/api_guide_xwrL64xx/power__xwrLx4xx_8h.html
Best Regards,
Kevin
Hello,
From sdk, mmwave_dfp, there is option of the power saving "T_RL_API_SENS_DYN_PWR_SAVE_DIS".
(dfp_sensor.h)
/*!
* @brief Sensor inter-chirp (during chirp idle time) dynamic power save disable override
* mode. \n This field provides various RX and TX chain dynamic rapid power save disable
* option in inter-chirp idle time.
* | Value | Definition |
* |-------|----------- |
* | 0 | Dynamic Power Save Enable (default)|
* | 1 | Dynamic Power Save Disable |
* Bit field definition: \n
* | Bit Field | Definition |
* |-------|----------- |
* | Bit 0 | TX PA POWERSAVE_DISABLE control |
* | Bit 1 | TX LO POWERSAVE_DISABLE control |
* | Bit 2 | RX RF POWERSAVE_DISABLE control |
* | Bit 3 | RX BB POWERSAVE_DISABLE control |
* | Bit 4 | RX LO POWERSAVE_DISABLE control |
* | Bits [7:5] | Reserved |
* By default these power save modes are enabled in FECSS. \n
* Recommended settings:
* | Chirp Idle Time | INTER_CHIRP_PS_DIS |
* |-----------------| ------------------ |
* | > max of (6us - tx start time, 3.1us) | 0x00 (Power save Enabled) |
* | > max of (4us - tx start time, 3.1us) and <= max of (6us - tx start time, 3.1us) | 0x1F (Power save Disabled) |
* | < max of (4us - tx start time, 3.1us) | Not Supported idle time |
* Note: The minimum idle time can not go lower than max of (4us - tx start time, 3.1us).
*
*/
UINT8 c_InterChirpPsDis;
Best regards,
Hayden