diff options
author | Drashna Jaelre <drashna@live.com> | 2019-04-25 18:59:31 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-25 18:59:31 -0700 |
commit | cc1e4cde137beaa424fc1680b2f39d664b85393e (patch) | |
tree | 6b0892bcd64d24b14585037fe491104b5f8e00a1 /tmk_core/common/chibios/suspend.c | |
parent | b71e3e80c64576d4148d3b5927e3bccda0e8bb0a (diff) |
Fix wakeup function on ChibiOS
Somebody was a very, very bad boy, and did a poor job of copy-pasting
Diffstat (limited to 'tmk_core/common/chibios/suspend.c')
-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 |