to Automatic After Testing:
void restore_automatic_lpr_control() {
LowPowerRequestConfig config;
get_current_lpr_config(&config);
config.override = LowPowerRequestOutputOverride::NOT_FORCED;
configure_low_power_request(&config);
log_info("LPR restored to automatic control mode");
}
- 註
- Power Management Integration: In NOT_FORCED mode, the LPR signal timing is optimized for:
- Proper external circuit setup time before power mode entry
- Adequate hold time for external circuit response
- Coordination with internal power management sequences
- Minimal glitch or timing uncertainty
-
Recommended Usage:
- Use for all production systems requiring automatic power management
- Default mode for battery-powered applications
- Preferred mode for systems with external PMICs
- Standard configuration for reliable power coordination