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

@ -67,7 +67,7 @@ void send_keyboard_report(void) {
void add_key(uint8_t key)
{
#ifdef NKRO_ENABLE
if (keyboard_nkro && keyboard_protocol) {
if (keyboard_nkro) {
add_key_bit(key);
return;
}
@ -78,7 +78,7 @@ void add_key(uint8_t key)
void del_key(uint8_t key)
{
#ifdef NKRO_ENABLE
if (keyboard_nkro && keyboard_protocol) {
if (keyboard_nkro) {
del_key_bit(key);
return;
}
@ -151,7 +151,7 @@ uint8_t has_anymod(void)
uint8_t get_first_key(void)
{
#ifdef NKRO_ENABLE
if (keyboard_nkro && keyboard_protocol) {
if (keyboard_nkro) {
uint8_t i = 0;
for (; i < REPORT_BITS && !keyboard_report->nkro.bits[i]; i++)
;