diff options
author | Konstantin Đorđević <vomindoraan@gmail.com> | 2020-05-16 08:36:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-15 23:36:08 -0700 |
commit | 9cf69a199715a2aa7ba2ca7ab8f5553bbeb1dcd5 (patch) | |
tree | a8975904801263891684351944e566a1d1a1a767 /keyboards | |
parent | c6cf1ae4e71f6d520c415e02b6b50f482c936698 (diff) | |
download | qmk_firmware-9cf69a199715a2aa7ba2ca7ab8f5553bbeb1dcd5.tar.gz qmk_firmware-9cf69a199715a2aa7ba2ca7ab8f5553bbeb1dcd5.zip |
[Keymap] Update personal userspace and keymaps (#9082)
* Replace custom RCTRL implementation with built-in LM
Caveat: sends LCtrl instead of RCtrl
* Enable VIA support in KBD6X keymap
* Disable LTO on ChibiOS boards
* Disable locking support and Magic keycodes for all keymaps
* Organize and annotate rules.mk and config.h files
* Enable Console for Melody96 keymap
* L_RANGE_KEYMAP → LAYERS_KEYMAP
* Revert "Replace custom RCTRL implementation with built-in LM"
This reverts commit 17d706a82d7e31b53cd84efeb9b2ddb9922a2368.
* Set DYNAMIC_KEYMAP_LAYER_COUNT to 3 in Doro67 and Wasdat keymaps
* Enable Bootmagic Lite for all VIA keymaps
Diffstat (limited to 'keyboards')
9 files changed, 60 insertions, 22 deletions
diff --git a/keyboards/doro67/multi/keymaps/konstantin/config.h b/keyboards/doro67/multi/keymaps/konstantin/config.h index 3c2583e2d..1d12c7db3 100644 --- a/keyboards/doro67/multi/keymaps/konstantin/config.h +++ b/keyboards/doro67/multi/keymaps/konstantin/config.h | |||
@@ -1,4 +1,6 @@ | |||
1 | #pragma once | 1 | #pragma once |
2 | 2 | ||
3 | #define DYNAMIC_KEYMAP_LAYER_COUNT 3 | ||
4 | |||
3 | #define LAYER_FN | 5 | #define LAYER_FN |
4 | #define LAYER_NUMPAD | 6 | #define LAYER_NUMPAD |
diff --git a/keyboards/doro67/multi/keymaps/konstantin/rules.mk b/keyboards/doro67/multi/keymaps/konstantin/rules.mk index c3a73fd84..50c3f77dd 100644 --- a/keyboards/doro67/multi/keymaps/konstantin/rules.mk +++ b/keyboards/doro67/multi/keymaps/konstantin/rules.mk | |||
@@ -1,11 +1,18 @@ | |||
1 | BACKLIGHT_ENABLE = no | 1 | # Generic features |
2 | BOOTMAGIC_ENABLE = no | 2 | BOOTMAGIC_ENABLE = lite |
3 | COMMAND_ENABLE = yes | 3 | COMMAND_ENABLE = yes |
4 | CONSOLE_ENABLE = yes | 4 | CONSOLE_ENABLE = yes |
5 | EXTRAKEY_ENABLE = yes | 5 | EXTRAKEY_ENABLE = yes |
6 | GRAVE_ESC_ENABLE = no | ||
7 | MOUSEKEY_ENABLE = yes | 6 | MOUSEKEY_ENABLE = yes |
8 | NKRO_ENABLE = yes | 7 | NKRO_ENABLE = yes |
9 | SPACE_CADET_ENABLE = no | ||
10 | TAP_DANCE_ENABLE = yes | 8 | TAP_DANCE_ENABLE = yes |
11 | UNICODEMAP_ENABLE = yes | 9 | UNICODEMAP_ENABLE = yes |
10 | |||
11 | # Keyboard-specific features | ||
12 | BACKLIGHT_ENABLE = no | ||
13 | VIA_ENABLE = yes | ||
14 | |||
15 | # Firmware size reduction | ||
16 | GRAVE_ESC_ENABLE = no | ||
17 | MAGIC_ENABLE = no | ||
18 | SPACE_CADET_ENABLE = no | ||
diff --git a/keyboards/kbdfans/kbd6x/keymaps/konstantin/config.h b/keyboards/kbdfans/kbd6x/keymaps/konstantin/config.h index 4b511eb84..37f4e42c7 100644 --- a/keyboards/kbdfans/kbd6x/keymaps/konstantin/config.h +++ b/keyboards/kbdfans/kbd6x/keymaps/konstantin/config.h | |||
@@ -1,3 +1,5 @@ | |||
1 | #pragma once | 1 | #pragma once |
2 | 2 | ||
3 | #define DYNAMIC_KEYMAP_LAYER_COUNT 3 | ||
4 | |||
3 | #define LAYER_FN | 5 | #define LAYER_FN |
diff --git a/keyboards/kbdfans/kbd6x/keymaps/konstantin/keymap.c b/keyboards/kbdfans/kbd6x/keymaps/konstantin/keymap.c index 46cc0a113..304234a3f 100644 --- a/keyboards/kbdfans/kbd6x/keymaps/konstantin/keymap.c +++ b/keyboards/kbdfans/kbd6x/keymaps/konstantin/keymap.c | |||
@@ -6,7 +6,7 @@ enum keycodes_keymap { | |||
6 | }; | 6 | }; |
7 | 7 | ||
8 | enum layers_keymap { | 8 | enum layers_keymap { |
9 | L_RCTRL = L_RANGE_KEYMAP, | 9 | L_RCTRL = LAYERS_KEYMAP, |
10 | }; | 10 | }; |
11 | 11 | ||
12 | void eeconfig_init_keymap(void) { | 12 | void eeconfig_init_keymap(void) { |
diff --git a/keyboards/kbdfans/kbd6x/keymaps/konstantin/rules.mk b/keyboards/kbdfans/kbd6x/keymaps/konstantin/rules.mk index c75488af6..e2f34468a 100644 --- a/keyboards/kbdfans/kbd6x/keymaps/konstantin/rules.mk +++ b/keyboards/kbdfans/kbd6x/keymaps/konstantin/rules.mk | |||
@@ -1,12 +1,19 @@ | |||
1 | BACKLIGHT_ENABLE = no | 1 | # Generic features |
2 | BOOTMAGIC_ENABLE = no | 2 | BOOTMAGIC_ENABLE = lite |
3 | COMMAND_ENABLE = yes | 3 | COMMAND_ENABLE = yes |
4 | CONSOLE_ENABLE = no | 4 | CONSOLE_ENABLE = no |
5 | EXTRAKEY_ENABLE = yes | 5 | EXTRAKEY_ENABLE = yes |
6 | GRAVE_ESC_ENABLE = no | ||
7 | MOUSEKEY_ENABLE = yes | 6 | MOUSEKEY_ENABLE = yes |
8 | NKRO_ENABLE = yes | 7 | NKRO_ENABLE = yes |
9 | RGBLIGHT_ENABLE = yes | ||
10 | SPACE_CADET_ENABLE = no | ||
11 | TAP_DANCE_ENABLE = yes | 8 | TAP_DANCE_ENABLE = yes |
12 | UNICODEMAP_ENABLE = no | 9 | UNICODEMAP_ENABLE = no |
10 | |||
11 | # Keyboard-specific features | ||
12 | BACKLIGHT_ENABLE = no | ||
13 | RGBLIGHT_ENABLE = yes | ||
14 | VIA_ENABLE = yes | ||
15 | |||
16 | # Firmware size reduction | ||
17 | GRAVE_ESC_ENABLE = no | ||
18 | MAGIC_ENABLE = no | ||
19 | SPACE_CADET_ENABLE = no | ||
diff --git a/keyboards/maartenwut/wasdat/keymaps/konstantin/config.h b/keyboards/maartenwut/wasdat/keymaps/konstantin/config.h index 3c2583e2d..1d12c7db3 100644 --- a/keyboards/maartenwut/wasdat/keymaps/konstantin/config.h +++ b/keyboards/maartenwut/wasdat/keymaps/konstantin/config.h | |||
@@ -1,4 +1,6 @@ | |||
1 | #pragma once | 1 | #pragma once |
2 | 2 | ||
3 | #define DYNAMIC_KEYMAP_LAYER_COUNT 3 | ||
4 | |||
3 | #define LAYER_FN | 5 | #define LAYER_FN |
4 | #define LAYER_NUMPAD | 6 | #define LAYER_NUMPAD |
diff --git a/keyboards/maartenwut/wasdat/keymaps/konstantin/rules.mk b/keyboards/maartenwut/wasdat/keymaps/konstantin/rules.mk index c3a73fd84..f70005d3f 100644 --- a/keyboards/maartenwut/wasdat/keymaps/konstantin/rules.mk +++ b/keyboards/maartenwut/wasdat/keymaps/konstantin/rules.mk | |||
@@ -1,11 +1,17 @@ | |||
1 | BACKLIGHT_ENABLE = no | 1 | # Generic features |
2 | BOOTMAGIC_ENABLE = no | 2 | BOOTMAGIC_ENABLE = lite |
3 | COMMAND_ENABLE = yes | 3 | COMMAND_ENABLE = yes |
4 | CONSOLE_ENABLE = yes | 4 | CONSOLE_ENABLE = yes |
5 | EXTRAKEY_ENABLE = yes | 5 | EXTRAKEY_ENABLE = yes |
6 | GRAVE_ESC_ENABLE = no | ||
7 | MOUSEKEY_ENABLE = yes | 6 | MOUSEKEY_ENABLE = yes |
8 | NKRO_ENABLE = yes | 7 | NKRO_ENABLE = yes |
9 | SPACE_CADET_ENABLE = no | ||
10 | TAP_DANCE_ENABLE = yes | 8 | TAP_DANCE_ENABLE = yes |
11 | UNICODEMAP_ENABLE = yes | 9 | UNICODEMAP_ENABLE = yes |
10 | |||
11 | # Keyboard-specific features | ||
12 | VIA_ENABLE = yes | ||
13 | |||
14 | # Firmware size reduction | ||
15 | GRAVE_ESC_ENABLE = no | ||
16 | MAGIC_ENABLE = no | ||
17 | SPACE_CADET_ENABLE = no | ||
diff --git a/keyboards/melody96/keymaps/konstantin/rules.mk b/keyboards/melody96/keymaps/konstantin/rules.mk index 5b36eef2c..3ef19428a 100644 --- a/keyboards/melody96/keymaps/konstantin/rules.mk +++ b/keyboards/melody96/keymaps/konstantin/rules.mk | |||
@@ -1,12 +1,18 @@ | |||
1 | BACKLIGHT_ENABLE = no | 1 | # Generic features |
2 | BOOTMAGIC_ENABLE = no | 2 | BOOTMAGIC_ENABLE = no |
3 | COMMAND_ENABLE = yes | 3 | COMMAND_ENABLE = yes |
4 | CONSOLE_ENABLE = no | 4 | CONSOLE_ENABLE = yes |
5 | EXTRAKEY_ENABLE = yes | 5 | EXTRAKEY_ENABLE = yes |
6 | GRAVE_ESC_ENABLE = no | ||
7 | MOUSEKEY_ENABLE = yes | 6 | MOUSEKEY_ENABLE = yes |
8 | NKRO_ENABLE = yes | 7 | NKRO_ENABLE = yes |
9 | RGBLIGHT_ENABLE = yes | ||
10 | SPACE_CADET_ENABLE = no | ||
11 | TAP_DANCE_ENABLE = yes | 8 | TAP_DANCE_ENABLE = yes |
12 | UNICODEMAP_ENABLE = yes | 9 | UNICODEMAP_ENABLE = yes |
10 | |||
11 | # Keyboard-specific features | ||
12 | BACKLIGHT_ENABLE = no | ||
13 | RGBLIGHT_ENABLE = yes | ||
14 | |||
15 | # Firmware size reduction | ||
16 | GRAVE_ESC_ENABLE = no | ||
17 | MAGIC_ENABLE = no | ||
18 | SPACE_CADET_ENABLE = no | ||
diff --git a/keyboards/whitefox/keymaps/konstantin/rules.mk b/keyboards/whitefox/keymaps/konstantin/rules.mk index c39175c97..111c0faba 100644 --- a/keyboards/whitefox/keymaps/konstantin/rules.mk +++ b/keyboards/whitefox/keymaps/konstantin/rules.mk | |||
@@ -1,12 +1,18 @@ | |||
1 | BACKLIGHT_ENABLE = no | 1 | # Generic features |
2 | BOOTMAGIC_ENABLE = no | 2 | BOOTMAGIC_ENABLE = no |
3 | COMMAND_ENABLE = yes | 3 | COMMAND_ENABLE = yes |
4 | CONSOLE_ENABLE = yes | 4 | CONSOLE_ENABLE = yes |
5 | EXTRAKEY_ENABLE = yes | 5 | EXTRAKEY_ENABLE = yes |
6 | GRAVE_ESC_ENABLE = no | ||
7 | MOUSEKEY_ENABLE = yes | 6 | MOUSEKEY_ENABLE = yes |
8 | NKRO_ENABLE = yes | 7 | NKRO_ENABLE = yes |
9 | SPACE_CADET_ENABLE = no | ||
10 | TAP_DANCE_ENABLE = yes | 8 | TAP_DANCE_ENABLE = yes |
11 | UNICODEMAP_ENABLE = yes | 9 | UNICODEMAP_ENABLE = yes |
10 | |||
11 | # Keyboard-specific features | ||
12 | BACKLIGHT_ENABLE = no | ||
12 | VISUALIZER_ENABLE = no | 13 | VISUALIZER_ENABLE = no |
14 | |||
15 | # Firmware size reduction | ||
16 | GRAVE_ESC_ENABLE = no | ||
17 | MAGIC_ENABLE = no | ||
18 | SPACE_CADET_ENABLE = no | ||