We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent caed790 commit ce2a5e1Copy full SHA for ce2a5e1
1 file changed
firmware/src/keymap.c
@@ -464,14 +464,13 @@ void play_macro(const uint8_t code)
464
465
inline void send_tapkey(const uint8_t code)
466
{
467
- if ((code > 0) && (code <= MAX_NKRO_CODE))
+ if (code <= MAX_NKRO_CODE)
468
469
queue_autokeys(code, g_modifier_state);
470
}
471
- else if ((code & 0xE0) == 0xE0)
+ else if ((code & 0x70) == 0x70)
472
473
- unset_modifier(code);
474
- queue_autokeys(0, get_modfier_mask(code));
+ play_macro(code + 0x60);
475
476
477
0 commit comments