diff options
author | Joel Challis <git@zvecr.com> | 2024-03-15 22:23:40 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-15 22:23:40 +0000 |
commit | 24d824aae40b932dbcdc5036d7f30a6f2f352442 (patch) | |
tree | 75f16b70a97e1e8d949a6ffba09c8eeb57ac753a /keyboards/ydkb | |
parent | 68e8d74188a251336bf2eaa8d58e1e04983ac29e (diff) |
Migrate features from rules.mk to data driven - UVWXYZ (#23287)
Diffstat (limited to 'keyboards/ydkb')
-rw-r--r-- | keyboards/ydkb/chili/keyboard.json (renamed from keyboards/ydkb/chili/info.json) | 9 | ||||
-rw-r--r-- | keyboards/ydkb/chili/rules.mk | 12 | ||||
-rw-r--r-- | keyboards/ydkb/yd68/keyboard.json (renamed from keyboards/ydkb/yd68/info.json) | 9 | ||||
-rw-r--r-- | keyboards/ydkb/yd68/rules.mk | 12 |
4 files changed, 18 insertions, 24 deletions
diff --git a/keyboards/ydkb/chili/info.json b/keyboards/ydkb/chili/keyboard.json index 0b6b8cfebc..78dd6318fe 100644 --- a/keyboards/ydkb/chili/info.json +++ b/keyboards/ydkb/chili/keyboard.json @@ -8,6 +8,15 @@ "pid": "0x0001", "device_version": "0.0.1" }, + "features": { + "backlight": true, + "bootmagic": true, + "command": false, + "console": false, + "extrakey": true, + "mousekey": true, + "nkro": true + }, "matrix_pins": { "cols": ["D4", "F6", "F7", "C7", "C6", "B6", "B5", "B4", "D7", "D6"], "rows": ["F5", "F4", "F1", "F0", "E6", "B0", "D5", "D3", "D2", "D1", "D0"] diff --git a/keyboards/ydkb/chili/rules.mk b/keyboards/ydkb/chili/rules.mk deleted file mode 100644 index a48cbdc0de..0000000000 --- a/keyboards/ydkb/chili/rules.mk +++ /dev/null @@ -1,12 +0,0 @@ -# Build Options -# change yes to no to disable -# -BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite -MOUSEKEY_ENABLE = yes # Mouse keys -EXTRAKEY_ENABLE = yes # Audio control and System control -CONSOLE_ENABLE = no # Console for debug -COMMAND_ENABLE = no # Commands for debug and configuration -NKRO_ENABLE = yes # Enable N-Key Rollover -BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality -RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight -AUDIO_ENABLE = no # Audio output diff --git a/keyboards/ydkb/yd68/info.json b/keyboards/ydkb/yd68/keyboard.json index f805369f8d..a3542e72c2 100644 --- a/keyboards/ydkb/yd68/info.json +++ b/keyboards/ydkb/yd68/keyboard.json @@ -8,6 +8,15 @@ "pid": "0x6060", "device_version": "0.0.2" }, + "features": { + "bootmagic": false, + "command": false, + "console": false, + "extrakey": true, + "mousekey": true, + "nkro": false, + "rgblight": true + }, "matrix_pins": { "cols": ["B6", "F7", "F6", "F5", "F4", "F1", "F0", "E6", "B0", "B7", "D0", "D1", "D2", "D3", "D5"], "rows": ["B5", "C6", "C7", "D7", "B4"] diff --git a/keyboards/ydkb/yd68/rules.mk b/keyboards/ydkb/yd68/rules.mk deleted file mode 100644 index aa4c817d2a..0000000000 --- a/keyboards/ydkb/yd68/rules.mk +++ /dev/null @@ -1,12 +0,0 @@ -# Build Options -# change yes to no to disable -# -BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite -MOUSEKEY_ENABLE = yes # Mouse keys -EXTRAKEY_ENABLE = yes # Audio control and System control -CONSOLE_ENABLE = no # Console for debug -COMMAND_ENABLE = no # Commands for debug and configuration -NKRO_ENABLE = no # Enable N-Key Rollover -BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality -RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow -AUDIO_ENABLE = no # Audio output |