瀏覽代碼

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

Drashna Jaelre 3 年之前
父節點
當前提交
50dc313e80
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      quantum/backlight/backlight_avr.c

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