diff options
author | Thomas Weißschuh <thomas@t-8ch.de> | 2022-10-06 12:24:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-06 21:24:41 +1100 |
commit | cbe1c22d468d64d7a3274061ce9c2073ecb208a4 (patch) | |
tree | 00fea20653a9bb57af68c9a5c873f3c4a1874ecd /quantum/led.h | |
parent | c255174cf3e55483f14351a69689e24e849445a0 (diff) |
quantum: led: split out led_update_ports() for customization of led behaviour (#14452)
Diffstat (limited to 'quantum/led.h')
-rw-r--r-- | quantum/led.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/quantum/led.h b/quantum/led.h index b8262cbd8e..d12e519ea2 100644 --- a/quantum/led.h +++ b/quantum/led.h @@ -60,6 +60,7 @@ void led_set_user(uint8_t usb_led); void led_set_kb(uint8_t usb_led); bool led_update_user(led_t led_state); bool led_update_kb(led_t led_state); +void led_update_ports(led_t led_state); uint32_t last_led_activity_time(void); // Timestamp of the LED activity uint32_t last_led_activity_elapsed(void); // Number of milliseconds since the last LED activity |