diff options
| author | stanrc85 <47038504+stanrc85@users.noreply.github.com> | 2021-02-10 09:21:46 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-10 09:21:46 -0500 |
| commit | 7ef4aba52c40e8e4638f9b948e271ec41baa321a (patch) | |
| tree | f205a704a8743892e93ad6ee2c91ff197aa596f0 /users/stanrc85/stanrc85.c | |
| parent | 0aed8746bee2ff60727de0663dca4d82072e6632 (diff) | |
| download | qmk_firmware-7ef4aba52c40e8e4638f9b948e271ec41baa321a.tar.gz qmk_firmware-7ef4aba52c40e8e4638f9b948e271ec41baa321a.zip | |
Userspace updates (#11841)
* enable LTO for smaller firmware size
* delete since this was added to userspace rules.mk
* readme updates and new images
* Add -j to compile and flash commands in userpsace
* Enable NKRO
* Enable NKRO, VIA, LTO by default
* Stanrc85-ansi readme update
* Stanrc85-alice readme
* quick RGB layer indicator fix in keymap
Diffstat (limited to 'users/stanrc85/stanrc85.c')
| -rw-r--r-- | users/stanrc85/stanrc85.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/users/stanrc85/stanrc85.c b/users/stanrc85/stanrc85.c index 8bc52b0ff..d5e56571d 100644 --- a/users/stanrc85/stanrc85.c +++ b/users/stanrc85/stanrc85.c | |||
| @@ -109,11 +109,11 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { | |||
| 109 | uint8_t mods = get_mods(); | 109 | uint8_t mods = get_mods(); |
| 110 | clear_mods(); | 110 | clear_mods(); |
| 111 | if (mods & MOD_MASK_SHIFT) { | 111 | if (mods & MOD_MASK_SHIFT) { |
| 112 | send_string_with_delay_P(PSTR("qmk flash -kb " QMK_KEYBOARD " -km " QMK_KEYMAP "\n"), 10); //New way | 112 | send_string_with_delay_P(PSTR("qmk flash -j 6 -kb " QMK_KEYBOARD " -km " QMK_KEYMAP "\n"), 10); //New way |
| 113 | reset_keyboard(); | 113 | reset_keyboard(); |
| 114 | } | 114 | } |
| 115 | else | 115 | else |
| 116 | send_string_with_delay_P(PSTR("qmk compile -kb " QMK_KEYBOARD " -km " QMK_KEYMAP "\n"), 10); //New way | 116 | send_string_with_delay_P(PSTR("qmk compile -j 6 -kb " QMK_KEYBOARD " -km " QMK_KEYMAP "\n"), 10); //New way |
| 117 | set_mods(mods); | 117 | set_mods(mods); |
| 118 | } | 118 | } |
| 119 | break; | 119 | break; |
