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:
Daniel Schaefer 2023-03-23 12:59:15 +08:00
parent 666109ff8a
commit ef518f5b4b
7 changed files with 14 additions and 7 deletions

View File

@ -9,7 +9,7 @@
"extrakey": true,
"console": true,
"command": false,
"nkro": true,
"nkro": false,
"audio": false
},
"debounce": 5,

View File

@ -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);

View File

@ -9,7 +9,7 @@
"extrakey": true,
"console": true,
"command": false,
"nkro": true,
"nkro": false,
"audio": false
},
"debounce": 5,

View File

@ -9,7 +9,7 @@
"extrakey": true,
"console": true,
"command": false,
"nkro": true,
"nkro": false,
"audio": false
},
"debounce": 5,

View File

@ -9,7 +9,7 @@
"extrakey": true,
"console": true,
"command": false,
"nkro": true,
"nkro": false,
"audio": false
},
"debounce": 5,

View File

@ -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();

View File

@ -9,7 +9,7 @@
"extrakey": true,
"console": true,
"command": false,
"nkro": true,
"nkro": false,
"audio": false
},
"debounce": 5,