blob: d280f644b5cf4b9a268b5c5a303539ff28e1c63a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#include "idb_60.h"
extern inline void _idb_60_caps_led_on(void);
extern inline void _idb_60_esc_led_on(void);
extern inline void _idb_60_caps_led_off(void);
extern inline void _idb_60_esc_led_off(void);
void keyboard_pre_init_kb(void) {
setPinOutput(C4);
setPinOutput(C5);
}
void led_set_kb(uint8_t usb_led) {
if (IS_LED_ON(usb_led, USB_LED_CAPS_LOCK)) {
_idb_60_caps_led_on();
} else {
_idb_60_caps_led_off();
}
led_set_user(usb_led);
}
|