summaryrefslogtreecommitdiffstats
path: root/keyboards/infinity60/led.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/infinity60/led.c')
-rw-r--r--keyboards/infinity60/led.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/infinity60/led.c b/keyboards/infinity60/led.c
index 815a529fc..d2f554549 100644
--- a/keyboards/infinity60/led.c
+++ b/keyboards/infinity60/led.c
@@ -42,12 +42,12 @@ void led_set(uint8_t usb_led) {
if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
// signal the LED control thread
chSysUnconditionalLock();
- chMBPostI(&led_mailbox, LED_MSG_CAPS_ON);
+ chMBPostI(&led_mailbox, 0x59);
chSysUnconditionalUnlock();
} else {
// signal the LED control thread
chSysUnconditionalLock();
- chMBPostI(&led_mailbox, LED_MSG_CAPS_OFF);
+ chMBPostI(&led_mailbox, 0x59);
chSysUnconditionalUnlock();
}
}