diff options
author | IBNobody <protospherex@gmail.com> | 2016-03-15 23:52:51 -0500 |
---|---|---|
committer | IBNobody <protospherex@gmail.com> | 2016-03-15 23:52:51 -0500 |
commit | eba9a7d74db0be548cddc107f0370dabf43b017f (patch) | |
tree | 30320f53b83f944c5c038e19ae5cb2aa34423cfd /tmk_core | |
parent | 35393fa9dc3d14ea80ce72f27c13b1759600b245 (diff) | |
download | qmk_firmware-eba9a7d74db0be548cddc107f0370dabf43b017f.tar.gz qmk_firmware-eba9a7d74db0be548cddc107f0370dabf43b017f.zip |
Adding LED function pointers
Diffstat (limited to 'tmk_core')
-rw-r--r-- | tmk_core/common/led.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tmk_core/common/led.h b/tmk_core/common/led.h index d5fc051bf5..4b9632d3a4 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 } |