mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-10 18:49:08 +00:00
Fix NKRO code when NKRO is disable
This commit is contained in:
parent
452866319b
commit
32997200f7
1 changed files with 2 additions and 0 deletions
|
@ -272,7 +272,9 @@ void EVENT_USB_Device_ControlRequest(void)
|
|||
// Interface
|
||||
switch (USB_ControlRequest.wIndex) {
|
||||
case KEYBOARD_INTERFACE:
|
||||
#ifdef NKRO_ENABLE
|
||||
case NKRO_INTERFACE:
|
||||
#endif
|
||||
Endpoint_ClearSETUP();
|
||||
|
||||
while (!(Endpoint_IsOUTReceived())) {
|
||||
|
|
Loading…
Reference in a new issue