mirror of
https://github.com/firewalkwithm3/qmk_firmware.git
synced 2024-11-23 03:50:28 +08:00
Fix NKRO code when NKRO is disable
This commit is contained in:
parent
452866319b
commit
32997200f7
|
@ -272,7 +272,9 @@ void EVENT_USB_Device_ControlRequest(void)
|
||||||
// Interface
|
// Interface
|
||||||
switch (USB_ControlRequest.wIndex) {
|
switch (USB_ControlRequest.wIndex) {
|
||||||
case KEYBOARD_INTERFACE:
|
case KEYBOARD_INTERFACE:
|
||||||
|
#ifdef NKRO_ENABLE
|
||||||
case NKRO_INTERFACE:
|
case NKRO_INTERFACE:
|
||||||
|
#endif
|
||||||
Endpoint_ClearSETUP();
|
Endpoint_ClearSETUP();
|
||||||
|
|
||||||
while (!(Endpoint_IsOUTReceived())) {
|
while (!(Endpoint_IsOUTReceived())) {
|
||||||
|
|
Loading…
Reference in a new issue