diff options
author | jack <0x6A73@pm.me> | 2022-07-23 10:43:32 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-23 17:43:32 +0100 |
commit | a6f3194397a515ade82f10b5547e82e2863c8685 (patch) | |
tree | 54375d634250184f1f758d8f06f3a0bf69474a82 /quantum/quantum.c | |
parent | 8254d73fd441752b395830f29f8e051245c10b12 (diff) |
Add ability to enter bootloader mode from `QK_MAKE` (#17745)
Diffstat (limited to 'quantum/quantum.c')
-rw-r--r-- | quantum/quantum.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c index d1cfb5fbe0..0d5f398585 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c @@ -400,6 +400,9 @@ bool process_record_quantum(keyrecord_t *record) { SEND_STRING_DELAY(" compile ", TAP_CODE_DELAY); } SEND_STRING_DELAY("-kb " QMK_KEYBOARD " -km " QMK_KEYMAP SS_TAP(X_ENTER), TAP_CODE_DELAY); + if (temp_mod & MOD_MASK_CS) { + reset_keyboard(); + } } #endif } |