diff options
author | Florian Didron <fdidron@users.noreply.github.com> | 2019-04-30 15:11:26 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-30 15:11:26 +0900 |
commit | edf5c533d673b1e764fc6bf5576b302860bd8879 (patch) | |
tree | a5909c3cfdfd377b128164dfaa4259b84cb7098d /tmk_core | |
parent | c941ef0f0993a3fcb63e6d42e926bb8bd1f1a81f (diff) | |
parent | cc1e4cde137beaa424fc1680b2f39d664b85393e (diff) |
Merge pull request #28 from zsa/fix/wake_on_chibos
Fix wakeup function on ChibiOS
Diffstat (limited to 'tmk_core')
-rw-r--r-- | tmk_core/common/chibios/suspend.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/common/chibios/suspend.c b/tmk_core/common/chibios/suspend.c index 4a119ccefe..6027d69b78 100644 --- a/tmk_core/common/chibios/suspend.c +++ b/tmk_core/common/chibios/suspend.c @@ -82,7 +82,7 @@ void suspend_wakeup_init_user(void) { } */ __attribute__ ((weak)) void suspend_wakeup_init_kb(void) { - suspend_power_down_user(); + suspend_wakeup_init_user(); } /** \brief suspend wakeup condition |