fl16: Disable NKRO for now
The keyboard can still detect NKRO but the HID report limits that to 6KRO. Causes slow start up on Linux. Probably be related to: - https://github.com/qmk/qmk_firmware/issues/8733 - https://github.com/qmk/qmk_firmware/pull/14814 - https://github.com/qmk/qmk_firmware/pull/19372 Signed-off-by: Daniel Schaefer <dhs@frame.work>
This commit is contained in:
parent
666109ff8a
commit
ef518f5b4b
@ -9,7 +9,7 @@
|
||||
"extrakey": true,
|
||||
"console": true,
|
||||
"command": false,
|
||||
"nkro": true,
|
||||
"nkro": false,
|
||||
"audio": false
|
||||
},
|
||||
"debounce": 5,
|
||||
|
||||
@ -52,7 +52,11 @@ void handle_factory_command(uint8_t *data) {
|
||||
print("Reading Device serial number\n");
|
||||
|
||||
|
||||
#ifdef SERIAL_NUMBER
|
||||
uprintf("Serial number: %s\n", ascii_serialnum);
|
||||
#else
|
||||
uprintf("Serial number unavailable\n");
|
||||
#endif
|
||||
break;
|
||||
default:
|
||||
uprintf("Unknown factory command: %u\n", factory_command_id);
|
||||
|
||||
@ -9,7 +9,7 @@
|
||||
"extrakey": true,
|
||||
"console": true,
|
||||
"command": false,
|
||||
"nkro": true,
|
||||
"nkro": false,
|
||||
"audio": false
|
||||
},
|
||||
"debounce": 5,
|
||||
|
||||
@ -9,7 +9,7 @@
|
||||
"extrakey": true,
|
||||
"console": true,
|
||||
"command": false,
|
||||
"nkro": true,
|
||||
"nkro": false,
|
||||
"audio": false
|
||||
},
|
||||
"debounce": 5,
|
||||
|
||||
@ -9,7 +9,7 @@
|
||||
"extrakey": true,
|
||||
"console": true,
|
||||
"command": false,
|
||||
"nkro": true,
|
||||
"nkro": false,
|
||||
"audio": false
|
||||
},
|
||||
"debounce": 5,
|
||||
|
||||
@ -4,9 +4,11 @@
|
||||
#include "quantum.h"
|
||||
#include "lotus.h"
|
||||
|
||||
#include "usb_descriptor.h"
|
||||
#include "usb_descriptor_common.h"
|
||||
|
||||
// Prefix string literal with L for descriptors
|
||||
#define USBCONCAT(a, b) a##b
|
||||
#define USBSTR(s) USBCONCAT(L, s)
|
||||
#ifdef SERIAL_NUMBER
|
||||
USB_Descriptor_String_t PROGMEM SerialNumberString = {
|
||||
.Header = {
|
||||
.Size = sizeof(FALLBACK_SERIAL_NUMBER),
|
||||
@ -47,6 +49,7 @@ void *lotus_serial_number_string(void) {
|
||||
uint16_t lotus_serial_number_string_len(void) {
|
||||
return pgm_read_byte(&SerialNumberString.Header.Size);
|
||||
}
|
||||
#endif
|
||||
|
||||
void keyboard_post_init_kb(void) {
|
||||
keyboard_post_init_user();
|
||||
|
||||
@ -9,7 +9,7 @@
|
||||
"extrakey": true,
|
||||
"console": true,
|
||||
"command": false,
|
||||
"nkro": true,
|
||||
"nkro": false,
|
||||
"audio": false
|
||||
},
|
||||
"debounce": 5,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user