fix(activity): Use proper PM state for sleep.

This commit is contained in:
Peter Johanson 2022-02-20 15:08:40 -05:00 committed by Pete Johanson
parent 94ac100b6b
commit 9203ae217b
1 changed files with 1 additions and 1 deletions

View File

@ -69,8 +69,8 @@ void activity_work_handler(struct k_work *work) {
#if IS_ENABLED(CONFIG_ZMK_SLEEP)
if (inactive_time > MAX_SLEEP_MS && !is_usb_power_present()) {
// 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);
pm_power_state_set((struct pm_state_info){PM_STATE_SOFT_OFF, 0, 0});
} else
#endif /* IS_ENABLED(CONFIG_ZMK_SLEEP) */
if (inactive_time > MAX_IDLE_MS) {