forked from kofal.net/zmk
refactor(power): Extract activity/idle detection.
* Refactor power to extract more general purpose activity detection/events. * Use activity state to implement PM callback.
This commit is contained in:
@@ -13,13 +13,7 @@
|
||||
LOG_MODULE_DECLARE(zmk, CONFIG_ZMK_LOG_LEVEL);
|
||||
|
||||
#include <zmk/usb.h>
|
||||
#include <zmk/event-manager.h>
|
||||
#include <zmk/events/position-state-changed.h>
|
||||
#include <zmk/events/sensor-event.h>
|
||||
|
||||
static uint32_t power_last_uptime;
|
||||
|
||||
#define MAX_IDLE_MS CONFIG_ZMK_IDLE_SLEEP_TIMEOUT
|
||||
#include <zmk/activity.h>
|
||||
|
||||
bool is_usb_power_present() {
|
||||
#ifdef CONFIG_USB
|
||||
@@ -32,9 +26,7 @@ bool is_usb_power_present() {
|
||||
enum power_states sys_pm_policy_next_state(int32_t ticks) {
|
||||
#ifdef CONFIG_SYS_POWER_DEEP_SLEEP_STATES
|
||||
#ifdef CONFIG_HAS_SYS_POWER_STATE_DEEP_SLEEP_1
|
||||
int32_t current = k_uptime_get();
|
||||
if (power_last_uptime > 0 && !is_usb_power_present() &&
|
||||
current - power_last_uptime > MAX_IDLE_MS) {
|
||||
if (zmk_activity_get_state() == ZMK_ACTIVITY_SLEEP && !is_usb_power_present()) {
|
||||
return SYS_POWER_STATE_DEEP_SLEEP_1;
|
||||
}
|
||||
#endif /* CONFIG_HAS_SYS_POWER_STATE_DEEP_SLEEP_1 */
|
||||
@@ -42,21 +34,3 @@ enum power_states sys_pm_policy_next_state(int32_t ticks) {
|
||||
|
||||
return SYS_POWER_STATE_ACTIVE;
|
||||
}
|
||||
|
||||
int power_event_listener(const struct zmk_event_header *eh) {
|
||||
power_last_uptime = k_uptime_get();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int power_init() {
|
||||
power_last_uptime = k_uptime_get();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
ZMK_LISTENER(power, power_event_listener);
|
||||
ZMK_SUBSCRIPTION(power, position_state_changed);
|
||||
ZMK_SUBSCRIPTION(power, sensor_event);
|
||||
|
||||
SYS_INIT(power_init, APPLICATION, CONFIG_APPLICATION_INIT_PRIORITY);
|
||||
Reference in New Issue
Block a user