diff options
Diffstat (limited to 'keyboards/meira')
| -rw-r--r-- | keyboards/meira/keymaps/cole/keymap.c | 24 | ||||
| -rw-r--r-- | keyboards/meira/keymaps/grahampheath/keymap.c | 23 | ||||
| -rw-r--r-- | keyboards/meira/keymaps/takmiya/keymap.c | 24 |
3 files changed, 0 insertions, 71 deletions
diff --git a/keyboards/meira/keymaps/cole/keymap.c b/keyboards/meira/keymaps/cole/keymap.c index 71c8d9711..14581aa57 100644 --- a/keyboards/meira/keymaps/cole/keymap.c +++ b/keyboards/meira/keymaps/cole/keymap.c | |||
| @@ -130,30 +130,6 @@ void update_tri_layer_RGB(uint8_t layer1, uint8_t layer2, uint8_t layer3) { | |||
| 130 | } | 130 | } |
| 131 | } | 131 | } |
| 132 | 132 | ||
| 133 | const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) | ||
| 134 | { | ||
| 135 | // MACRODOWN only works in this function | ||
| 136 | switch(id) { | ||
| 137 | case 0: | ||
| 138 | if (record->event.pressed) { | ||
| 139 | register_code(KC_RSFT); | ||
| 140 | } else { | ||
| 141 | unregister_code(KC_RSFT); | ||
| 142 | } | ||
| 143 | break; | ||
| 144 | } | ||
| 145 | return MACRO_NONE; | ||
| 146 | }; | ||
| 147 | |||
| 148 | |||
| 149 | void matrix_init_user(void) { | ||
| 150 | |||
| 151 | } | ||
| 152 | |||
| 153 | void matrix_scan_user(void) { | ||
| 154 | |||
| 155 | } | ||
| 156 | |||
| 157 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | 133 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { |
| 158 | switch (keycode) { | 134 | switch (keycode) { |
| 159 | case LOWER: | 135 | case LOWER: |
diff --git a/keyboards/meira/keymaps/grahampheath/keymap.c b/keyboards/meira/keymaps/grahampheath/keymap.c index ace172a2a..ca47b8913 100644 --- a/keyboards/meira/keymaps/grahampheath/keymap.c +++ b/keyboards/meira/keymaps/grahampheath/keymap.c | |||
| @@ -204,21 +204,6 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
| 204 | ) | 204 | ) |
| 205 | }; | 205 | }; |
| 206 | 206 | ||
| 207 | const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) | ||
| 208 | { | ||
| 209 | // MACRODOWN only works in this function | ||
| 210 | switch(id) { | ||
| 211 | case 0: | ||
| 212 | if (record->event.pressed) { | ||
| 213 | register_code(KC_RSFT); | ||
| 214 | } else { | ||
| 215 | unregister_code(KC_RSFT); | ||
| 216 | } | ||
| 217 | break; | ||
| 218 | } | ||
| 219 | return MACRO_NONE; | ||
| 220 | }; | ||
| 221 | |||
| 222 | #ifdef AUDIO_ENABLE | 207 | #ifdef AUDIO_ENABLE |
| 223 | 208 | ||
| 224 | float tone_qwerty[][2] = SONG(QWERTY_SOUND); | 209 | float tone_qwerty[][2] = SONG(QWERTY_SOUND); |
| @@ -230,14 +215,6 @@ const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) | |||
| 230 | float plover_gb_song[][2] = SONG(PLOVER_GOODBYE_SOUND); | 215 | float plover_gb_song[][2] = SONG(PLOVER_GOODBYE_SOUND); |
| 231 | #endif | 216 | #endif |
| 232 | 217 | ||
| 233 | void matrix_init_user(void) { | ||
| 234 | |||
| 235 | } | ||
| 236 | |||
| 237 | void matrix_scan_user(void) { | ||
| 238 | |||
| 239 | } | ||
| 240 | |||
| 241 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | 218 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { |
| 242 | switch (keycode) { | 219 | switch (keycode) { |
| 243 | case QWERTY: | 220 | case QWERTY: |
diff --git a/keyboards/meira/keymaps/takmiya/keymap.c b/keyboards/meira/keymaps/takmiya/keymap.c index bf693d8ad..171b4f43a 100644 --- a/keyboards/meira/keymaps/takmiya/keymap.c +++ b/keyboards/meira/keymaps/takmiya/keymap.c | |||
| @@ -124,30 +124,6 @@ void update_tri_layer_RGB(uint8_t layer1, uint8_t layer2, uint8_t layer3) { | |||
| 124 | } | 124 | } |
| 125 | } | 125 | } |
| 126 | 126 | ||
| 127 | const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) | ||
| 128 | { | ||
| 129 | // MACRODOWN only works in this function | ||
| 130 | switch(id) { | ||
| 131 | case 0: | ||
| 132 | if (record->event.pressed) { | ||
| 133 | register_code(KC_RSFT); | ||
| 134 | } else { | ||
| 135 | unregister_code(KC_RSFT); | ||
| 136 | } | ||
| 137 | break; | ||
| 138 | } | ||
| 139 | return MACRO_NONE; | ||
| 140 | }; | ||
| 141 | |||
| 142 | |||
| 143 | void matrix_init_user(void) { | ||
| 144 | |||
| 145 | } | ||
| 146 | |||
| 147 | void matrix_scan_user(void) { | ||
| 148 | |||
| 149 | } | ||
| 150 | |||
| 151 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { | 127 | bool process_record_user(uint16_t keycode, keyrecord_t *record) { |
| 152 | switch (keycode) { | 128 | switch (keycode) { |
| 153 | case QWERTY: | 129 | case QWERTY: |
