diff options
Diffstat (limited to 'quantum/backlight/backlight_avr.c')
-rw-r--r-- | quantum/backlight/backlight_avr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/backlight/backlight_avr.c b/quantum/backlight/backlight_avr.c index 634260800..67b551dc3 100644 --- a/quantum/backlight/backlight_avr.c +++ b/quantum/backlight/backlight_avr.c | |||
@@ -222,7 +222,7 @@ ISR(TIMERx_OVF_vect) { | |||
222 | // takes many computation cycles). | 222 | // takes many computation cycles). |
223 | // so better not turn them on while the counter TOP is very low. | 223 | // so better not turn them on while the counter TOP is very low. |
224 | if (OCRxx > ICRx / 250 + 5) { | 224 | if (OCRxx > ICRx / 250 + 5) { |
225 | FOR_EACH_LED(backlight_on(backlight_pin);) | 225 | backlight_pins_on(); |
226 | } | 226 | } |
227 | } | 227 | } |
228 | 228 | ||