1
0
Fork 0

NKRO is disable when SET_PROTOCOL(boot)

- Command can force to enable NKRO even when boot mode
- After boot keyboard may be in boot mode due to BIOS' request
This commit is contained in:
tmk 2014-04-27 05:07:27 +09:00
parent 5e3f2d2b2e
commit 22854eb71b
4 changed files with 11 additions and 5 deletions

View file

@ -56,7 +56,7 @@ int8_t usb_keyboard_send_report(report_keyboard_t *report)
int8_t result = 0;
#ifdef NKRO_ENABLE
if (keyboard_nkro && keyboard_protocol)
if (keyboard_nkro)
result = send_report(report, KBD2_ENDPOINT, 0, KBD2_SIZE);
else
#endif