summaryrefslogtreecommitdiffstats
path: root/keyboard/clueboard2
diff options
context:
space:
mode:
authorskullY <skullydazed@gmail.com>2016-04-06 05:27:24 +0200
committerskullY <skullydazed@gmail.com>2016-04-06 05:27:24 +0200
commit34dd96187c5ea2fe6e806f662e6ab0c320d0df1b (patch)
tree674c3091d803d9d0861036571d7889f5694bc99c /keyboard/clueboard2
parent5e822417d7aaebbb58154092ad2a7b5fd2469fbb (diff)
downloadqmk_firmware-34dd96187c5ea2fe6e806f662e6ab0c320d0df1b.tar.gz
qmk_firmware-34dd96187c5ea2fe6e806f662e6ab0c320d0df1b.tar.xz
Fix the clueboard2 led code
Diffstat (limited to 'keyboard/clueboard2')
-rw-r--r--keyboard/clueboard2/led.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboard/clueboard2/led.c b/keyboard/clueboard2/led.c
index 5788fc7b1..3d074e5d2 100644
--- a/keyboard/clueboard2/led.c
+++ b/keyboard/clueboard2/led.c
@@ -25,7 +25,7 @@ void led_init_ports() {
DDRB |= (1<<4);
}
-void led_set(uint8_t usb_led) {
+void led_set_kb(uint8_t usb_led) {
if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
// Turn capslock on
PORTB |= (1<<4);