diff options
| author | James Young <18669334+noroadsleft@users.noreply.github.com> | 2024-05-22 13:49:15 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-05-22 21:49:15 +0100 |
| commit | 199f01cc5760055dfbdc89f426bf5a8f9b49bfb7 (patch) | |
| tree | 21509be9a7885a7cb7707e241b5577e3b9e1f6d9 /keyboards/maple_computing | |
| parent | 7baaac9531c2806e38d8c9e2e0357b3eadbf2a7f (diff) | |
Migrate `LOCKING_*_ENABLE` to Data-Driven: M, Part 1 (#23772)
Affects:
- `m10a`
- `machine_industries/m4_a`
- `magic_force/mf34`
- `majistic`
- `makenova/omega/omega4`
- `makrosu`
- `manta60`
- `maple_computing/christmas_tree/v2017`
- `maple_computing/ivy/rev1`
- `maple_computing/launchpad/rev1`
- `maple_computing/minidox/rev1`
- `maple_computing/the_ruler`
- `marksard/leftover30`
- `marksard/treadstone48/rev1`
- `marksard/treadstone48/rev2`
- `masterworks/classy_tkl/rev_a`
- `maxipad`
- `maxr1998/phoebe`
- `mc_76k`
- `mechkeys/acr60`
- `mechkeys/alu84`
- `mechkeys/espectro`
- `mechkeys/mechmini/v2`
- `mechkeys/mk60`
- `mechlovin/hannah910/rev1`
- `mechlovin/hannah910/rev2`
- `mechlovin/hannah910/rev3`
- `mechlovin/jay60`
- `mechlovin/tmkl`
- `mechwild/bde/lefty`
- `mechwild/bde/rev2`
- `mechwild/bde/righty`
- `mechwild/mercutio`
- `mechwild/mokulua/mirrored`
- `mechwild/mokulua/standard`
- `mechwild/murphpad`
- `mechwild/obe`
- `mechwild/puckbuddy`
- `meletrix/zoom98`
- `melgeek/mj6xy/rev3`
- `meme`
- `meow65`
- `mesa/mesa_tkl`
- `meson`
- `mikeneko65`
- `millipad`
- `mini_elixivy`
- `mini_ten_key_plus`
- `minimon/index_tab`
- `mint60`
- `misonoworks/karina`
- `miuni32`
- `mixi`
Diffstat (limited to 'keyboards/maple_computing')
| -rw-r--r-- | keyboards/maple_computing/christmas_tree/config.h | 23 | ||||
| -rw-r--r-- | keyboards/maple_computing/christmas_tree/v2017/keyboard.json | 6 | ||||
| -rw-r--r-- | keyboards/maple_computing/ivy/config.h | 38 | ||||
| -rw-r--r-- | keyboards/maple_computing/ivy/rev1/keyboard.json | 6 | ||||
| -rw-r--r-- | keyboards/maple_computing/launchpad/config.h | 39 | ||||
| -rw-r--r-- | keyboards/maple_computing/launchpad/rev1/keyboard.json | 6 | ||||
| -rw-r--r-- | keyboards/maple_computing/minidox/config.h | 34 | ||||
| -rw-r--r-- | keyboards/maple_computing/minidox/rev1/keyboard.json | 6 | ||||
| -rw-r--r-- | keyboards/maple_computing/the_ruler/config.h | 39 | ||||
| -rw-r--r-- | keyboards/maple_computing/the_ruler/keyboard.json | 6 |
10 files changed, 30 insertions, 173 deletions
diff --git a/keyboards/maple_computing/christmas_tree/config.h b/keyboards/maple_computing/christmas_tree/config.h deleted file mode 100644 index 5070f05156..0000000000 --- a/keyboards/maple_computing/christmas_tree/config.h +++ /dev/null | |||
| @@ -1,23 +0,0 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2012 Jun Wako <wakojun@gmail.com> | ||
| 3 | |||
| 4 | This program is free software: you can redistribute it and/or modify | ||
| 5 | it under the terms of the GNU General Public License as published by | ||
| 6 | the Free Software Foundation, either version 2 of the License, or | ||
| 7 | (at your option) any later version. | ||
| 8 | |||
| 9 | This program is distributed in the hope that it will be useful, | ||
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | GNU General Public License for more details. | ||
| 13 | |||
| 14 | You should have received a copy of the GNU General Public License | ||
| 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 16 | */ | ||
| 17 | |||
| 18 | #pragma once | ||
| 19 | |||
| 20 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
| 21 | #define LOCKING_SUPPORT_ENABLE | ||
| 22 | /* Locking resynchronize hack */ | ||
| 23 | #define LOCKING_RESYNC_ENABLE | ||
diff --git a/keyboards/maple_computing/christmas_tree/v2017/keyboard.json b/keyboards/maple_computing/christmas_tree/v2017/keyboard.json index dd54b78f5d..604b1b382a 100644 --- a/keyboards/maple_computing/christmas_tree/v2017/keyboard.json +++ b/keyboards/maple_computing/christmas_tree/v2017/keyboard.json | |||
| @@ -19,6 +19,12 @@ | |||
| 19 | "mousekey": false, | 19 | "mousekey": false, |
| 20 | "nkro": false | 20 | "nkro": false |
| 21 | }, | 21 | }, |
| 22 | "qmk": { | ||
| 23 | "locking": { | ||
| 24 | "enabled": true, | ||
| 25 | "resync": true | ||
| 26 | } | ||
| 27 | }, | ||
| 22 | "matrix_pins": { | 28 | "matrix_pins": { |
| 23 | "cols": ["D1"], | 29 | "cols": ["D1"], |
| 24 | "rows": ["D3", "F4", "D0", "F6", "F5", "D4"] | 30 | "rows": ["D3", "F4", "D0", "F6", "F5", "D4"] |
diff --git a/keyboards/maple_computing/ivy/config.h b/keyboards/maple_computing/ivy/config.h deleted file mode 100644 index 49b31f1edf..0000000000 --- a/keyboards/maple_computing/ivy/config.h +++ /dev/null | |||
| @@ -1,38 +0,0 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2012 Jun Wako <wakojun@gmail.com> | ||
| 3 | |||
| 4 | This program is free software: you can redistribute it and/or modify | ||
| 5 | it under the terms of the GNU General Public License as published by | ||
| 6 | the Free Software Foundation, either version 2 of the License, or | ||
| 7 | (at your option) any later version. | ||
| 8 | |||
| 9 | This program is distributed in the hope that it will be useful, | ||
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | GNU General Public License for more details. | ||
| 13 | |||
| 14 | You should have received a copy of the GNU General Public License | ||
| 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 16 | */ | ||
| 17 | #pragma once | ||
| 18 | |||
| 19 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
| 20 | #define LOCKING_SUPPORT_ENABLE | ||
| 21 | /* Locking resynchronize hack */ | ||
| 22 | #define LOCKING_RESYNC_ENABLE | ||
| 23 | |||
| 24 | /* | ||
| 25 | * Feature disable options | ||
| 26 | * These options are also useful to firmware size reduction. | ||
| 27 | */ | ||
| 28 | |||
| 29 | /* disable debug print */ | ||
| 30 | //#define NO_DEBUG | ||
| 31 | |||
| 32 | /* disable print */ | ||
| 33 | //#define NO_PRINT | ||
| 34 | |||
| 35 | /* disable action features */ | ||
| 36 | //#define NO_ACTION_LAYER | ||
| 37 | //#define NO_ACTION_TAPPING | ||
| 38 | //#define NO_ACTION_ONESHOT | ||
diff --git a/keyboards/maple_computing/ivy/rev1/keyboard.json b/keyboards/maple_computing/ivy/rev1/keyboard.json index a4c5cdcce3..aac35a5dcc 100644 --- a/keyboards/maple_computing/ivy/rev1/keyboard.json +++ b/keyboards/maple_computing/ivy/rev1/keyboard.json | |||
| @@ -25,6 +25,12 @@ | |||
| 25 | "extrakey": true, | 25 | "extrakey": true, |
| 26 | "backlight": true | 26 | "backlight": true |
| 27 | }, | 27 | }, |
| 28 | "qmk": { | ||
| 29 | "locking": { | ||
| 30 | "enabled": true, | ||
| 31 | "resync": true | ||
| 32 | } | ||
| 33 | }, | ||
| 28 | "layouts": { | 34 | "layouts": { |
| 29 | "LAYOUT": { | 35 | "LAYOUT": { |
| 30 | "layout": [ | 36 | "layout": [ |
diff --git a/keyboards/maple_computing/launchpad/config.h b/keyboards/maple_computing/launchpad/config.h deleted file mode 100644 index b9449c4714..0000000000 --- a/keyboards/maple_computing/launchpad/config.h +++ /dev/null | |||
| @@ -1,39 +0,0 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2012 Jun Wako <wakojun@gmail.com> | ||
| 3 | |||
| 4 | This program is free software: you can redistribute it and/or modify | ||
| 5 | it under the terms of the GNU General Public License as published by | ||
| 6 | the Free Software Foundation, either version 2 of the License, or | ||
| 7 | (at your option) any later version. | ||
| 8 | |||
| 9 | This program is distributed in the hope that it will be useful, | ||
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | GNU General Public License for more details. | ||
| 13 | |||
| 14 | You should have received a copy of the GNU General Public License | ||
| 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 16 | */ | ||
| 17 | |||
| 18 | #pragma once | ||
| 19 | |||
| 20 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
| 21 | #define LOCKING_SUPPORT_ENABLE | ||
| 22 | /* Locking resynchronize hack */ | ||
| 23 | #define LOCKING_RESYNC_ENABLE | ||
| 24 | |||
| 25 | /* | ||
| 26 | * Feature disable options | ||
| 27 | * These options are also useful to firmware size reduction. | ||
| 28 | */ | ||
| 29 | |||
| 30 | /* disable debug print */ | ||
| 31 | //#define NO_DEBUG | ||
| 32 | |||
| 33 | /* disable print */ | ||
| 34 | //#define NO_PRINT | ||
| 35 | |||
| 36 | /* disable action features */ | ||
| 37 | //#define NO_ACTION_LAYER | ||
| 38 | //#define NO_ACTION_TAPPING | ||
| 39 | //#define NO_ACTION_ONESHOT | ||
diff --git a/keyboards/maple_computing/launchpad/rev1/keyboard.json b/keyboards/maple_computing/launchpad/rev1/keyboard.json index 7308c49670..8c75561179 100644 --- a/keyboards/maple_computing/launchpad/rev1/keyboard.json +++ b/keyboards/maple_computing/launchpad/rev1/keyboard.json | |||
| @@ -39,6 +39,12 @@ | |||
| 39 | "extrakey": true, | 39 | "extrakey": true, |
| 40 | "nkro": true | 40 | "nkro": true |
| 41 | }, | 41 | }, |
| 42 | "qmk": { | ||
| 43 | "locking": { | ||
| 44 | "enabled": true, | ||
| 45 | "resync": true | ||
| 46 | } | ||
| 47 | }, | ||
| 42 | "layouts": { | 48 | "layouts": { |
| 43 | "LAYOUT": { | 49 | "LAYOUT": { |
| 44 | "layout": [ | 50 | "layout": [ |
diff --git a/keyboards/maple_computing/minidox/config.h b/keyboards/maple_computing/minidox/config.h deleted file mode 100644 index c59b7d33b1..0000000000 --- a/keyboards/maple_computing/minidox/config.h +++ /dev/null | |||
| @@ -1,34 +0,0 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2012 Jun Wako <wakojun@gmail.com> | ||
| 3 | |||
| 4 | This program is free software: you can redistribute it and/or modify | ||
| 5 | it under the terms of the GNU General Public License as published by | ||
| 6 | the Free Software Foundation, either version 2 of the License, or | ||
| 7 | (at your option) any later version. | ||
| 8 | |||
| 9 | This program is distributed in the hope that it will be useful, | ||
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | GNU General Public License for more details. | ||
| 13 | |||
| 14 | You should have received a copy of the GNU General Public License | ||
| 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 16 | */ | ||
| 17 | |||
| 18 | #pragma once | ||
| 19 | |||
| 20 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
| 21 | #define LOCKING_SUPPORT_ENABLE | ||
| 22 | /* Locking resynchronize hack */ | ||
| 23 | #define LOCKING_RESYNC_ENABLE | ||
| 24 | |||
| 25 | /* disable debug print */ | ||
| 26 | //#define NO_DEBUG | ||
| 27 | |||
| 28 | /* disable print */ | ||
| 29 | //#define NO_PRINT | ||
| 30 | |||
| 31 | /* disable action features */ | ||
| 32 | //#define NO_ACTION_LAYER | ||
| 33 | //#define NO_ACTION_TAPPING | ||
| 34 | //#define NO_ACTION_ONESHOT | ||
diff --git a/keyboards/maple_computing/minidox/rev1/keyboard.json b/keyboards/maple_computing/minidox/rev1/keyboard.json index e7f1e027ae..7fc69dd9dd 100644 --- a/keyboards/maple_computing/minidox/rev1/keyboard.json +++ b/keyboards/maple_computing/minidox/rev1/keyboard.json | |||
| @@ -25,6 +25,12 @@ | |||
| 25 | "extrakey": true, | 25 | "extrakey": true, |
| 26 | "command": true | 26 | "command": true |
| 27 | }, | 27 | }, |
| 28 | "qmk": { | ||
| 29 | "locking": { | ||
| 30 | "enabled": true, | ||
| 31 | "resync": true | ||
| 32 | } | ||
| 33 | }, | ||
| 28 | "community_layouts": ["split_3x5_3"], | 34 | "community_layouts": ["split_3x5_3"], |
| 29 | "layout_aliases": { | 35 | "layout_aliases": { |
| 30 | "LAYOUT": "LAYOUT_split_3x5_3" | 36 | "LAYOUT": "LAYOUT_split_3x5_3" |
diff --git a/keyboards/maple_computing/the_ruler/config.h b/keyboards/maple_computing/the_ruler/config.h deleted file mode 100644 index b9449c4714..0000000000 --- a/keyboards/maple_computing/the_ruler/config.h +++ /dev/null | |||
| @@ -1,39 +0,0 @@ | |||
| 1 | /* | ||
| 2 | Copyright 2012 Jun Wako <wakojun@gmail.com> | ||
| 3 | |||
| 4 | This program is free software: you can redistribute it and/or modify | ||
| 5 | it under the terms of the GNU General Public License as published by | ||
| 6 | the Free Software Foundation, either version 2 of the License, or | ||
| 7 | (at your option) any later version. | ||
| 8 | |||
| 9 | This program is distributed in the hope that it will be useful, | ||
| 10 | but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 11 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| 12 | GNU General Public License for more details. | ||
| 13 | |||
| 14 | You should have received a copy of the GNU General Public License | ||
| 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 16 | */ | ||
| 17 | |||
| 18 | #pragma once | ||
| 19 | |||
| 20 | /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ | ||
| 21 | #define LOCKING_SUPPORT_ENABLE | ||
| 22 | /* Locking resynchronize hack */ | ||
| 23 | #define LOCKING_RESYNC_ENABLE | ||
| 24 | |||
| 25 | /* | ||
| 26 | * Feature disable options | ||
| 27 | * These options are also useful to firmware size reduction. | ||
| 28 | */ | ||
| 29 | |||
| 30 | /* disable debug print */ | ||
| 31 | //#define NO_DEBUG | ||
| 32 | |||
| 33 | /* disable print */ | ||
| 34 | //#define NO_PRINT | ||
| 35 | |||
| 36 | /* disable action features */ | ||
| 37 | //#define NO_ACTION_LAYER | ||
| 38 | //#define NO_ACTION_TAPPING | ||
| 39 | //#define NO_ACTION_ONESHOT | ||
diff --git a/keyboards/maple_computing/the_ruler/keyboard.json b/keyboards/maple_computing/the_ruler/keyboard.json index c38af0a320..7d15bb9bb8 100644 --- a/keyboards/maple_computing/the_ruler/keyboard.json +++ b/keyboards/maple_computing/the_ruler/keyboard.json | |||
| @@ -36,6 +36,12 @@ | |||
| 36 | "nkro": false, | 36 | "nkro": false, |
| 37 | "rgblight": true | 37 | "rgblight": true |
| 38 | }, | 38 | }, |
| 39 | "qmk": { | ||
| 40 | "locking": { | ||
| 41 | "enabled": true, | ||
| 42 | "resync": true | ||
| 43 | } | ||
| 44 | }, | ||
| 39 | "matrix_pins": { | 45 | "matrix_pins": { |
| 40 | "cols": ["D6", "D7", "B4", "B5", "B6", "C6"], | 46 | "cols": ["D6", "D7", "B4", "B5", "B6", "C6"], |
| 41 | "rows": ["C7"] | 47 | "rows": ["C7"] |
