diff options
author | Ryan <fauxpark@gmail.com> | 2020-12-30 20:58:57 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-30 20:58:57 +1100 |
commit | 411b92e206746faa0b2264a155d5c9a64cf38a37 (patch) | |
tree | b71689bc9a363e0d8337733be515abb753cce65a /tmk_core/common/avr | |
parent | 1aa8a3b4243ad3b2bdeea535dba3980c779171ea (diff) | |
download | qmk_firmware-411b92e206746faa0b2264a155d5c9a64cf38a37.tar.gz qmk_firmware-411b92e206746faa0b2264a155d5c9a64cf38a37.zip |
Remove useless wait in AVR suspend code (#11352)
Diffstat (limited to 'tmk_core/common/avr')
-rw-r--r-- | tmk_core/common/avr/suspend.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tmk_core/common/avr/suspend.c b/tmk_core/common/avr/suspend.c index 11ac146eb..aa0d42680 100644 --- a/tmk_core/common/avr/suspend.c +++ b/tmk_core/common/avr/suspend.c | |||
@@ -179,9 +179,6 @@ void suspend_wakeup_init(void) { | |||
179 | #if defined(RGBLIGHT_SLEEP) && defined(RGBLIGHT_ENABLE) | 179 | #if defined(RGBLIGHT_SLEEP) && defined(RGBLIGHT_ENABLE) |
180 | is_suspended = false; | 180 | is_suspended = false; |
181 | if (rgblight_enabled) { | 181 | if (rgblight_enabled) { |
182 | # ifdef BOOTLOADER_TEENSY | ||
183 | wait_ms(10); | ||
184 | # endif | ||
185 | rgblight_enable_noeeprom(); | 182 | rgblight_enable_noeeprom(); |
186 | } | 183 | } |
187 | rgblight_timer_enable(); | 184 | rgblight_timer_enable(); |