diff options
Diffstat (limited to 'quantum/dynamic_macro.h')
-rw-r--r-- | quantum/dynamic_macro.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/quantum/dynamic_macro.h b/quantum/dynamic_macro.h index 7dca30f07..f242405de 100644 --- a/quantum/dynamic_macro.h +++ b/quantum/dynamic_macro.h | |||
@@ -48,9 +48,11 @@ enum dynamic_macro_keycodes { | |||
48 | /* Blink the LEDs to notify the user about some event. */ | 48 | /* Blink the LEDs to notify the user about some event. */ |
49 | void dynamic_macro_led_blink(void) | 49 | void dynamic_macro_led_blink(void) |
50 | { | 50 | { |
51 | #ifdef BACKLIGHT_ENABLE | ||
51 | backlight_toggle(); | 52 | backlight_toggle(); |
52 | _delay_ms(100); | 53 | _delay_ms(100); |
53 | backlight_toggle(); | 54 | backlight_toggle(); |
55 | #endif | ||
54 | } | 56 | } |
55 | 57 | ||
56 | /* Convenience macros used for retrieving the debug info. All of them | 58 | /* Convenience macros used for retrieving the debug info. All of them |