From eba9a7d74db0be548cddc107f0370dabf43b017f Mon Sep 17 00:00:00 2001 From: IBNobody Date: Tue, 15 Mar 2016 23:52:51 -0500 Subject: Adding LED function pointers --- tmk_core/common/led.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tmk_core/common/led.h') diff --git a/tmk_core/common/led.h b/tmk_core/common/led.h index d5fc051bf..4b9632d3a 100644 --- a/tmk_core/common/led.h +++ b/tmk_core/common/led.h @@ -33,6 +33,8 @@ extern "C" { #endif void led_set(uint8_t usb_led); +void * led_set_kb(uint8_t usb_led); + #ifdef __cplusplus } -- cgit v1.2.3 From 10491ba21f91526c2011f43523dcde8710706dff Mon Sep 17 00:00:00 2001 From: IBNobody Date: Tue, 22 Mar 2016 20:58:44 -0500 Subject: Fixed LED Function Calls Fixed LED indicator function calls to match how the matrix init function calls are formatted. --- tmk_core/common/led.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tmk_core/common/led.h') diff --git a/tmk_core/common/led.h b/tmk_core/common/led.h index 4b9632d3a..2e18dc2af 100644 --- a/tmk_core/common/led.h +++ b/tmk_core/common/led.h @@ -33,11 +33,12 @@ extern "C" { #endif void led_set(uint8_t usb_led); -void * led_set_kb(uint8_t usb_led); +/* keyboard-specific LED functionality */ +void led_set_kb(uint8_t usb_led); #ifdef __cplusplus } #endif -#endif +#endif \ No newline at end of file -- cgit v1.2.3