Browse Source

#1792 added in waits from tmk for locking switches

fixes #1792
pull/1823/head
Joe Martin 6 years ago
committed by Jack Humbert
parent
commit
b91ffba4be
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      tmk_core/common/action.c

+ 3
- 0
tmk_core/common/action.c View File

@ -619,6 +619,7 @@ void register_code(uint8_t code)
#endif
add_key(KC_CAPSLOCK);
send_keyboard_report();
wait_ms(100);
del_key(KC_CAPSLOCK);
send_keyboard_report();
}
@ -629,6 +630,7 @@ void register_code(uint8_t code)
#endif
add_key(KC_NUMLOCK);
send_keyboard_report();
wait_ms(100);
del_key(KC_NUMLOCK);
send_keyboard_report();
}
@ -639,6 +641,7 @@ void register_code(uint8_t code)
#endif
add_key(KC_SCROLLLOCK);
send_keyboard_report();
wait_ms(100);
del_key(KC_SCROLLLOCK);
send_keyboard_report();
}


Loading…
Cancel
Save