aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/melody96
diff options
context:
space:
mode:
authorKonstantin Đorđević <vomindoraan@gmail.com>2019-07-16 17:48:24 +0200
committernoroadsleft <18669334+noroadsleft@users.noreply.github.com>2019-07-16 14:13:08 -0700
commit65906f679d812c85b18c383c4bdc3eff00d5e71d (patch)
tree482416cfc35c4de7c84c2d4bec86737d0b64ce77 /keyboards/melody96
parent6af77551c67c846b06c596cbd367d66c755f8051 (diff)
downloadfirmware-65906f679d812c85b18c383c4bdc3eff00d5e71d.tar.gz
firmware-65906f679d812c85b18c383c4bdc3eff00d5e71d.tar.bz2
firmware-65906f679d812c85b18c383c4bdc3eff00d5e71d.zip
Use led_set_kb instead of led_set_user in melody96.c
Diffstat (limited to 'keyboards/melody96')
-rw-r--r--keyboards/melody96/melody96.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/keyboards/melody96/melody96.c b/keyboards/melody96/melody96.c
index 2d313bc1e..2fe274ee4 100644
--- a/keyboards/melody96/melody96.c
+++ b/keyboards/melody96/melody96.c
@@ -1,7 +1,6 @@
#include "melody96.h"
-void led_set_user(uint8_t usb_led) {
-
+void led_set_kb(uint8_t usb_led) {
if (usb_led & (1 << USB_LED_NUM_LOCK)) {
DDRC |= (1 << 6); PORTC &= ~(1 << 6);
} else {
@@ -19,4 +18,6 @@ void led_set_user(uint8_t usb_led) {
} else {
DDRB &= ~(1 << 5); PORTB &= ~(1 << 5);
}
-} \ No newline at end of file
+
+ led_set_user(usb_led);
+}