diff options
author | stanrc85 <47038504+stanrc85@users.noreply.github.com> | 2019-03-06 21:20:51 +0100 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-03-06 21:20:51 +0100 |
commit | 33e9f1c75a6961fa25689aba2586fd0ef1fba75f (patch) | |
tree | 59c653a830ee60fccefd39d09251397edb0eb7de /layouts | |
parent | be8257f0a784a07e7dd93ecafe96c1d7774383f7 (diff) | |
download | qmk_firmware-33e9f1c75a6961fa25689aba2586fd0ef1fba75f.tar.gz qmk_firmware-33e9f1c75a6961fa25689aba2586fd0ef1fba75f.tar.xz |
[Keymap] Add KC_MAKE keycode to my userspace and keymaps (#5324)
* Add keycode for KC_MAKE
* Add KC_MAKE keycode
* Add stanrc85.c file with KC_MAKE
* Remove unused include
* Improved KC_MAKE stolen from Drashna
* Define mod mask for new KC_MAKE code
* RESET board to flash after compiling
* Remove send_string
* RESET fixed in KC_MAKE
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/community/60_ansi/stanrc85-ansi/keymap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/community/60_ansi/stanrc85-ansi/keymap.c b/layouts/community/60_ansi/stanrc85-ansi/keymap.c index 27c3f1658..00d6f5ede 100644 --- a/layouts/community/60_ansi/stanrc85-ansi/keymap.c +++ b/layouts/community/60_ansi/stanrc85-ansi/keymap.c @@ -52,11 +52,11 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { [3] = LAYOUT_60_ansi( _______, RGB_TOG, RGB_MOD, RGB_VAD, RGB_VAI, RGB_SAI, RGB_HUD, RGB_HUI, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, RESET, - TG(1), _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, + TG(1), _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_MAKE, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______) }; -bool process_record_user(uint16_t keycode, keyrecord_t *record) { +bool process_record_keymap(uint16_t keycode, keyrecord_t *record) { return true; } |