diff options
author | Nick Brassel <nick@tzarc.org> | 2020-01-03 09:58:34 +1100 |
---|---|---|
committer | Nick Brassel <nick@tzarc.org> | 2020-01-28 23:45:42 +1100 |
commit | 4d06d2835c87f3eed694493fb749527032a78ec2 (patch) | |
tree | bcdee649bdfa6fc26f749ff026681946610b6714 /keyboards/ergodox_stm32 | |
parent | 92c62352cf869a4099eb821b9e7d56d303bbec7b (diff) | |
download | qmk_firmware-4d06d2835c87f3eed694493fb749527032a78ec2.tar.gz qmk_firmware-4d06d2835c87f3eed694493fb749527032a78ec2.zip |
Move CORTEX_ENABLE_WFI_IDLE=TRUE to rules.mk files.
Diffstat (limited to 'keyboards/ergodox_stm32')
-rw-r--r-- | keyboards/ergodox_stm32/chconf.h | 4 | ||||
-rw-r--r-- | keyboards/ergodox_stm32/rules.mk | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/keyboards/ergodox_stm32/chconf.h b/keyboards/ergodox_stm32/chconf.h index d9114ec858..513ae821db 100644 --- a/keyboards/ergodox_stm32/chconf.h +++ b/keyboards/ergodox_stm32/chconf.h @@ -105,10 +105,6 @@ */ #define CH_CFG_NO_IDLE_THREAD FALSE -/* Use __WFI in the idle thread for waiting. Does lower the power - * consumption. */ -#define CORTEX_ENABLE_WFI_IDLE TRUE - /** @} */ /*===========================================================================*/ diff --git a/keyboards/ergodox_stm32/rules.mk b/keyboards/ergodox_stm32/rules.mk index 1bf1a742ab..ab7b853f5d 100644 --- a/keyboards/ergodox_stm32/rules.mk +++ b/keyboards/ergodox_stm32/rules.mk @@ -30,3 +30,7 @@ NKRO_ENABLE = yes # USB Nkey Rollover CUSTOM_MATRIX = yes # Custom matrix file NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work UNICODE_ENABLE = yes # Unicode + + +# Enter lower-power sleep mode when on the ChibiOS idle thread +OPT_DEFS += -DCORTEX_ENABLE_WFI_IDLE=TRUE |