summaryrefslogtreecommitdiffstats
path: root/keyboards
diff options
context:
space:
mode:
authorMechMerlin <30334081+mechmerlin@users.noreply.github.com>2018-07-16 17:43:17 +0200
committerDrashna Jaelre <drashna@live.com>2018-07-16 17:43:17 +0200
commit8f0ec565f425039e75f5625fc3b34623f85a4558 (patch)
tree603c1d2e21190cabc8b4b8a0739219e8d0fb3c31 /keyboards
parent6a4a4a2875cd264eac2d2c3fb25f3e9cb9e890a6 (diff)
downloadqmk_firmware-8f0ec565f425039e75f5625fc3b34623f85a4558.tar.gz
qmk_firmware-8f0ec565f425039e75f5625fc3b34623f85a4558.tar.xz
E6V2 LE Caps Lock LED Fix (#3419)
Diffstat (limited to 'keyboards')
-rw-r--r--keyboards/e6v2/le/le.c17
1 files changed, 4 insertions, 13 deletions
diff --git a/keyboards/e6v2/le/le.c b/keyboards/e6v2/le/le.c
index 9083352d4..b99a57bca 100644
--- a/keyboards/e6v2/le/le.c
+++ b/keyboards/e6v2/le/le.c
@@ -23,7 +23,7 @@ bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
void led_set_kb(uint8_t usb_led) {
// put your keyboard LED indicator (ex: Caps Lock LED) toggling code here
- DDRB |= (1<<6);
+ DDRB |= (1<<7);
if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
// output low
DDRB |= (1<<2);
@@ -33,21 +33,12 @@ void led_set_kb(uint8_t usb_led) {
DDRB &= ~(1<<2);
PORTB &= ~(1<<2);
}
- // DDRB |= (1<<7);
- // DDRB |= (1<<1);
- // DDRB |= (1<<3);
- // DDRE |= (1<<6);
if (usb_led == 0){
- PORTB |= (1<<6);
- // PORTB |= (1<<7);
- // PORTB |= (1<<1);
- // PORTB |= (1<<3);
- // PORTE |= (1<<6);
+ PORTB |= (1<<7);
}
else{
- PORTB &= ~(1<<6);
- // PORTB &= ~(1<<7);
+ PORTB &= ~(1<<7);
}
-
+
led_set_user(usb_led);
}