fix(activity): Use proper PM state for sleep.
This commit is contained in:
parent
94ac100b6b
commit
9203ae217b
1 changed files with 1 additions and 1 deletions
|
@ -69,8 +69,8 @@ void activity_work_handler(struct k_work *work) {
|
||||||
#if IS_ENABLED(CONFIG_ZMK_SLEEP)
|
#if IS_ENABLED(CONFIG_ZMK_SLEEP)
|
||||||
if (inactive_time > MAX_SLEEP_MS && !is_usb_power_present()) {
|
if (inactive_time > MAX_SLEEP_MS && !is_usb_power_present()) {
|
||||||
// Put devices in low power mode before sleeping
|
// Put devices in low power mode before sleeping
|
||||||
pm_power_state_force((struct pm_state_info){PM_STATE_STANDBY, 0, 0});
|
|
||||||
set_state(ZMK_ACTIVITY_SLEEP);
|
set_state(ZMK_ACTIVITY_SLEEP);
|
||||||
|
pm_power_state_set((struct pm_state_info){PM_STATE_SOFT_OFF, 0, 0});
|
||||||
} else
|
} else
|
||||||
#endif /* IS_ENABLED(CONFIG_ZMK_SLEEP) */
|
#endif /* IS_ENABLED(CONFIG_ZMK_SLEEP) */
|
||||||
if (inactive_time > MAX_IDLE_MS) {
|
if (inactive_time > MAX_IDLE_MS) {
|
||||||
|
|
Loading…
Reference in a new issue