diff options
| author | Gam3cat <31171909+Gam3cat@users.noreply.github.com> | 2019-07-05 04:56:57 -0700 |
|---|---|---|
| committer | Drashna Jaelre <drashna@live.com> | 2019-07-05 04:56:57 -0700 |
| commit | 509a34fbabeb57d57c35ddfd0243ebee3f0618a8 (patch) | |
| tree | b5dd9eeeedd058d65812938aa427569216a5e366 /keyboards | |
| parent | cbf76a129007d14f69fca761144c6b5fd377b150 (diff) | |
| download | qmk_firmware-509a34fbabeb57d57c35ddfd0243ebee3f0618a8.tar.gz qmk_firmware-509a34fbabeb57d57c35ddfd0243ebee3f0618a8.zip | |
[Keymap] Fixing keymap DYNAMIC_MACRO_RANGE keycode enumeration (#6248)
Diffstat (limited to 'keyboards')
| -rw-r--r-- | keyboards/gonnerd/keymaps/gam3cat/keymap.c | 6 | ||||
| -rw-r--r-- | keyboards/gonnerd/keymaps/gam3cat/rules.mk | 1 | ||||
| -rw-r--r-- | keyboards/hineybush/h87a/keymaps/gam3cat/keymap.c | 10 | ||||
| -rw-r--r-- | keyboards/jc65/v32u4/keymaps/gam3cat/keymap.c | 8 | ||||
| -rw-r--r-- | keyboards/jc65/v32u4/keymaps/gam3cat/rules.mk | 1 | ||||
| -rw-r--r-- | keyboards/m10a/keymaps/gam3cat/keymap.c | 6 | ||||
| -rw-r--r-- | keyboards/m10a/keymaps/gam3cat/rules.mk | 1 |
7 files changed, 15 insertions, 18 deletions
diff --git a/keyboards/gonnerd/keymaps/gam3cat/keymap.c b/keyboards/gonnerd/keymaps/gam3cat/keymap.c index f01dd920e..3142209d6 100644 --- a/keyboards/gonnerd/keymaps/gam3cat/keymap.c +++ b/keyboards/gonnerd/keymaps/gam3cat/keymap.c | |||
| @@ -12,10 +12,10 @@ enum layers { | |||
| 12 | }; | 12 | }; |
| 13 | 13 | ||
| 14 | enum custom_keycodes { | 14 | enum custom_keycodes { |
| 15 | DYNAMIC_MACRO_RANGE = SAFE_RANGE, | 15 | QMK_REV = SAFE_RANGE, |
| 16 | QMK_REV, | ||
| 17 | KC_WEB, | 16 | KC_WEB, |
| 18 | KC_SP4 | 17 | KC_SP4, |
| 18 | DYNAMIC_MACRO_RANGE | ||
| 19 | }; | 19 | }; |
| 20 | 20 | ||
| 21 | extern backlight_config_t backlight_config; | 21 | extern backlight_config_t backlight_config; |
diff --git a/keyboards/gonnerd/keymaps/gam3cat/rules.mk b/keyboards/gonnerd/keymaps/gam3cat/rules.mk index 55e681efb..6eab033cc 100644 --- a/keyboards/gonnerd/keymaps/gam3cat/rules.mk +++ b/keyboards/gonnerd/keymaps/gam3cat/rules.mk | |||
| @@ -22,4 +22,3 @@ FAUXCLICKY_ENABLE = no # Uses buzzer to emulate clicky switches. By defaul | |||
| 22 | API_SYSEX_ENABLE = no # This enables using the Quantum SYSEX API to send strings(+5390) | 22 | API_SYSEX_ENABLE = no # This enables using the Quantum SYSEX API to send strings(+5390) |
| 23 | KEY_LOCK_ENABLE = no # This enables key lock(+260) | 23 | KEY_LOCK_ENABLE = no # This enables key lock(+260) |
| 24 | SPLIT_KEYBOARD = no # This enables split keyboard support and includes all necessary files located at quantum/split_common | 24 | SPLIT_KEYBOARD = no # This enables split keyboard support and includes all necessary files located at quantum/split_common |
| 25 | |||
diff --git a/keyboards/hineybush/h87a/keymaps/gam3cat/keymap.c b/keyboards/hineybush/h87a/keymaps/gam3cat/keymap.c index 2a4e5ca41..fde263715 100644 --- a/keyboards/hineybush/h87a/keymaps/gam3cat/keymap.c +++ b/keyboards/hineybush/h87a/keymaps/gam3cat/keymap.c | |||
| @@ -12,10 +12,10 @@ enum layers { | |||
| 12 | }; | 12 | }; |
| 13 | 13 | ||
| 14 | enum custom_keycodes { | 14 | enum custom_keycodes { |
| 15 | DYNAMIC_MACRO_RANGE = SAFE_RANGE, | 15 | QMK_REV = SAFE_RANGE, |
| 16 | QMK_REV, | ||
| 17 | KC_WEB, | 16 | KC_WEB, |
| 18 | KC_SP4 | 17 | KC_SP4, |
| 18 | DYNAMIC_MACRO_RANGE | ||
| 19 | }; | 19 | }; |
| 20 | 20 | ||
| 21 | extern backlight_config_t backlight_config; | 21 | extern backlight_config_t backlight_config; |
| @@ -259,11 +259,11 @@ uint32_t layer_state_set_user(uint32_t state) { | |||
| 259 | break; | 259 | break; |
| 260 | case _FL: | 260 | case _FL: |
| 261 | custom_backlight_level(2); | 261 | custom_backlight_level(2); |
| 262 | rgblight_sethsv_noeeprom(280,255,255); | 262 | rgblight_sethsv_noeeprom(240,255,255); |
| 263 | break; | 263 | break; |
| 264 | case _AL: | 264 | case _AL: |
| 265 | custom_backlight_level(3); | 265 | custom_backlight_level(3); |
| 266 | rgblight_sethsv_noeeprom(350,255,255); | 266 | rgblight_sethsv_noeeprom(255,255,255); |
| 267 | break; | 267 | break; |
| 268 | default: | 268 | default: |
| 269 | custom_backlight_level(0); | 269 | custom_backlight_level(0); |
diff --git a/keyboards/jc65/v32u4/keymaps/gam3cat/keymap.c b/keyboards/jc65/v32u4/keymaps/gam3cat/keymap.c index aa5709a37..2b13f63ed 100644 --- a/keyboards/jc65/v32u4/keymaps/gam3cat/keymap.c +++ b/keyboards/jc65/v32u4/keymaps/gam3cat/keymap.c | |||
| @@ -12,10 +12,10 @@ enum layers { | |||
| 12 | }; | 12 | }; |
| 13 | 13 | ||
| 14 | enum custom_keycodes { | 14 | enum custom_keycodes { |
| 15 | DYNAMIC_MACRO_RANGE = SAFE_RANGE, | 15 | QMK_REV = SAFE_RANGE, |
| 16 | QMK_REV, | ||
| 17 | KC_WEB, | 16 | KC_WEB, |
| 18 | KC_SP4 | 17 | KC_SP4, |
| 18 | DYNAMIC_MACRO_RANGE | ||
| 19 | }; | 19 | }; |
| 20 | 20 | ||
| 21 | extern backlight_config_t backlight_config; | 21 | extern backlight_config_t backlight_config; |
| @@ -251,7 +251,7 @@ uint32_t layer_state_set_user(uint32_t state) { | |||
| 251 | break; | 251 | break; |
| 252 | case _AL: | 252 | case _AL: |
| 253 | custom_backlight_level(3); | 253 | custom_backlight_level(3); |
| 254 | rgblight_sethsv_noeeprom(350,255,255); | 254 | rgblight_sethsv_noeeprom(250,255,255); |
| 255 | break; | 255 | break; |
| 256 | default: | 256 | default: |
| 257 | custom_backlight_level(0); | 257 | custom_backlight_level(0); |
diff --git a/keyboards/jc65/v32u4/keymaps/gam3cat/rules.mk b/keyboards/jc65/v32u4/keymaps/gam3cat/rules.mk index 4086c15d4..85b2b41a6 100644 --- a/keyboards/jc65/v32u4/keymaps/gam3cat/rules.mk +++ b/keyboards/jc65/v32u4/keymaps/gam3cat/rules.mk | |||
| @@ -22,4 +22,3 @@ FAUXCLICKY_ENABLE = no # Uses buzzer to emulate clicky switches. By defaul | |||
| 22 | API_SYSEX_ENABLE = no # This enables using the Quantum SYSEX API to send strings(+5390) | 22 | API_SYSEX_ENABLE = no # This enables using the Quantum SYSEX API to send strings(+5390) |
| 23 | KEY_LOCK_ENABLE = no # This enables key lock(+260) | 23 | KEY_LOCK_ENABLE = no # This enables key lock(+260) |
| 24 | SPLIT_KEYBOARD = no # This enables split keyboard support and includes all necessary files located at quantum/split_common | 24 | SPLIT_KEYBOARD = no # This enables split keyboard support and includes all necessary files located at quantum/split_common |
| 25 | |||
diff --git a/keyboards/m10a/keymaps/gam3cat/keymap.c b/keyboards/m10a/keymaps/gam3cat/keymap.c index 8ee35d50a..2d79007fe 100644 --- a/keyboards/m10a/keymaps/gam3cat/keymap.c +++ b/keyboards/m10a/keymaps/gam3cat/keymap.c | |||
| @@ -17,10 +17,10 @@ enum layers { | |||
| 17 | }; | 17 | }; |
| 18 | 18 | ||
| 19 | enum custom_keycodes { | 19 | enum custom_keycodes { |
| 20 | DYNAMIC_MACRO_RANGE = SAFE_RANGE, | 20 | QMK_REV = SAFE_RANGE, |
| 21 | QMK_REV, | ||
| 22 | KC_WEB, | 21 | KC_WEB, |
| 23 | KC_WCLS | 22 | KC_WCLS, |
| 23 | DYNAMIC_MACRO_RANGE | ||
| 24 | }; | 24 | }; |
| 25 | 25 | ||
| 26 | extern backlight_config_t backlight_config; | 26 | extern backlight_config_t backlight_config; |
diff --git a/keyboards/m10a/keymaps/gam3cat/rules.mk b/keyboards/m10a/keymaps/gam3cat/rules.mk index b09c2904f..00515a31e 100644 --- a/keyboards/m10a/keymaps/gam3cat/rules.mk +++ b/keyboards/m10a/keymaps/gam3cat/rules.mk | |||
| @@ -22,4 +22,3 @@ FAUXCLICKY_ENABLE = no # Uses buzzer to emulate clicky switches. By defaul | |||
| 22 | API_SYSEX_ENABLE = no # This enables using the Quantum SYSEX API to send strings(+5390) | 22 | API_SYSEX_ENABLE = no # This enables using the Quantum SYSEX API to send strings(+5390) |
| 23 | KEY_LOCK_ENABLE = no # This enables key lock(+260) | 23 | KEY_LOCK_ENABLE = no # This enables key lock(+260) |
| 24 | SPLIT_KEYBOARD = no # This enables split keyboard support and includes all necessary files located at quantum/split_common | 24 | SPLIT_KEYBOARD = no # This enables split keyboard support and includes all necessary files located at quantum/split_common |
| 25 | |||
