2019-08-05 06:06:33 +00:00
|
|
|
#include "revc.h"
|
2016-08-27 15:40:50 +00:00
|
|
|
|
2017-05-26 22:25:35 +00:00
|
|
|
|
|
|
|
extern inline void gh60_caps_led_on(void);
|
|
|
|
extern inline void gh60_poker_leds_on(void);
|
|
|
|
extern inline void gh60_fn_led_on(void);
|
|
|
|
extern inline void gh60_esc_led_on(void);
|
|
|
|
extern inline void gh60_wasd_leds_on(void);
|
|
|
|
|
|
|
|
extern inline void gh60_caps_led_off(void);
|
|
|
|
extern inline void gh60_poker_leds_off(void);
|
|
|
|
extern inline void gh60_fn_led_off(void);
|
|
|
|
extern inline void gh60_esc_led_off(void);
|
|
|
|
extern inline void gh60_wasd_leds_off(void);
|
|
|
|
|
|
|
|
|
2016-08-27 15:40:50 +00:00
|
|
|
void led_set_kb(uint8_t usb_led) {
|
2019-07-02 16:22:56 +00:00
|
|
|
// put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
|
2017-05-26 22:25:35 +00:00
|
|
|
|
2019-07-02 16:22:56 +00:00
|
|
|
if (IS_LED_ON(usb_led, USB_LED_CAPS_LOCK)) {
|
|
|
|
gh60_caps_led_on();
|
|
|
|
} else {
|
|
|
|
gh60_caps_led_off();
|
2016-08-27 15:40:50 +00:00
|
|
|
}
|
2017-05-26 22:25:35 +00:00
|
|
|
|
2019-07-02 16:22:56 +00:00
|
|
|
led_set_user(usb_led);
|
2016-08-27 15:40:50 +00:00
|
|
|
}
|