Skip to content

Commit

Permalink
[Bug] Revert backlight pins on function call (#15205)
Browse files Browse the repository at this point in the history
  • Loading branch information
drashna authored Nov 18, 2021
1 parent b9148eb commit 50dc313
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quantum/backlight/backlight_avr.c
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}
}

Expand Down

0 comments on commit 50dc313

Please sign in to comment.