#1792 added in waits from tmk for locking switches

fixes #1792
pull/1823/head
Joe Martin 7 years ago committed by Jack Humbert
parent 01ac8a6051
commit b91ffba4be

@ -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