Browse Source

next_usb: Change LEDs usage for CapsLock status

master
tmk 8 years ago
parent
commit
c1f36042b4
2 changed files with 8 additions and 1 deletions
  1. 6
    1
      converter/next_usb/led.c
  2. 2
    0
      converter/next_usb/matrix.c

+ 6
- 1
converter/next_usb/led.c View File

@@ -47,9 +47,14 @@ POSSIBILITY OF SUCH DAMAGE.

#include "stdint.h"
#include "led.h"
#include "next_kbd.h"


void led_set(uint8_t usb_led)
{

if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
next_kbd_set_leds(true, true);
} else {
next_kbd_set_leds(false, false);
}
}

+ 2
- 0
converter/next_usb/matrix.c View File

@@ -194,10 +194,12 @@ uint8_t matrix_scan(void)
NEXT_KBD_LED1_ON;
#ifdef NEXT_KBD_SHIFT_FLASH_LEDS
next_kbd_set_leds(
NEXT_KBD_PRESSED_SHIFT_LEFT(resp) ? true : false,
NEXT_KBD_PRESSED_SHIFT_RGHT(resp) ? true : false
);
#endif
dprintf("[ r=%04lX keycode=%02X pressed=%X CTRL=%X SHIFT_LEFT=%X SHIFT_RGHT=%X CMD_LEFT=%X CMD_RGHT=%X ALT_LEFT=%X ALT_RGHT=%X ]\n", \
resp, \