diff options
author | Peter Johanson <[email protected]> | 2023-12-20 18:08:40 -0800 |
---|---|---|
committer | Pete Johanson <[email protected]> | 2024-03-27 20:59:26 -0700 |
commit | fceb0351a58622e7a89a649efdb387c1c2ea2df1 (patch) | |
tree | e96ccb64c1fe1bbe430cb749b91e4ad11441723b /app/Kconfig | |
parent | 96968514e378cd134889637ee3e0c6311e08e13a (diff) | |
download | zmk-fceb0351a58622e7a89a649efdb387c1c2ea2df1.tar.gz zmk-fceb0351a58622e7a89a649efdb387c1c2ea2df1.zip |
refactor: Fixes for soft-off based on review.
* Better naming for gpio-key behavior triggers.
* Tweaks to scanned behavior trigger to avoid bad semaphore use,
and reduce chance of issues with slowly scanned matrixes.
* Various code cleanups of style issues.
Diffstat (limited to 'app/Kconfig')
-rw-r--r-- | app/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Kconfig b/app/Kconfig index 60a959d498..3ca5679360 100644 --- a/app/Kconfig +++ b/app/Kconfig @@ -427,10 +427,10 @@ config ZMK_PM_SOFT_OFF bool "Soft-off support" select PM_DEVICE -config ZMK_WAKEUP_TRIGGER_KEY +config ZMK_GPIO_KEY_WAKEUP_TRIGGER bool "Hardware supported wakeup (GPIO)" default y - depends on DT_HAS_ZMK_WAKEUP_TRIGGER_KEY_ENABLED && ZMK_PM_SOFT_OFF + depends on DT_HAS_ZMK_GPIO_KEY_WAKEUP_TRIGGER_ENABLED && ZMK_PM_SOFT_OFF #Power Management endmenu |