Adjust tap_code16 to account for TAP_HOLD_CAPS_DELAY (#15635)
Co-authored-by: Ga68 <github.ga68.e@grxme.com>
This commit is contained in:
parent
3e9551bcfa
commit
1f59fe6d1b
|
@ -93,9 +93,12 @@ __attribute__((weak)) void unregister_code16(uint16_t code) {
|
||||||
|
|
||||||
__attribute__((weak)) void tap_code16(uint16_t code) {
|
__attribute__((weak)) void tap_code16(uint16_t code) {
|
||||||
register_code16(code);
|
register_code16(code);
|
||||||
#if TAP_CODE_DELAY > 0
|
if (code == KC_CAPS_LOCK) {
|
||||||
wait_ms(TAP_CODE_DELAY);
|
wait_ms(TAP_HOLD_CAPS_DELAY);
|
||||||
#endif
|
}
|
||||||
|
else if (TAP_CODE_DELAY > 0) {
|
||||||
|
wait_ms(TAP_CODE_DELAY);
|
||||||
|
}
|
||||||
unregister_code16(code);
|
unregister_code16(code);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue