diff options
author | Drashna Jaelre <drashna@live.com> | 2021-11-18 11:06:55 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-19 06:06:55 +1100 |
commit | 50dc313e809ae1e5e7775d90fd1cb43152091e48 (patch) | |
tree | 33dee200a5bb7b5aeab75142fb3af6d04d6be5f5 /quantum/backlight | |
parent | b9148eb1bd00d4cf2fded05d18add3e5198a706d (diff) |
[Bug] Revert backlight pins on function call (#15205)
Diffstat (limited to 'quantum/backlight')
-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 634260800a..67b551dc3c 100644 --- a/quantum/backlight/backlight_avr.c +++ b/quantum/backlight/backlight_avr.c @@ -222,7 +222,7 @@ ISR(TIMERx_OVF_vect) { // takes many computation cycles). // so better not turn them on while the counter TOP is very low. if (OCRxx > ICRx / 250 + 5) { - FOR_EACH_LED(backlight_on(backlight_pin);) + backlight_pins_on(); } } |