Browse Source

[Bug] Revert backlight pins on function call (#15205)

pull/12616/merge
Drashna Jaelre 2 years ago
committed by GitHub
parent
commit
50dc313e80
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      quantum/backlight/backlight_avr.c

+ 1
- 1
quantum/backlight/backlight_avr.c View File

@ -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();
}
}


Loading…
Cancel
Save