diff options
author | Joel Challis <git@zvecr.com> | 2024-03-15 01:42:15 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-15 01:42:15 +0000 |
commit | 539fa21bf80308a21048334909b6512917aa3c7b (patch) | |
tree | e8bd54e073f8b4cebcb111f51fc24b318a763a87 /keyboards/kira | |
parent | 16ad09299c25d3338771c5743729f0ec4b90586b (diff) |
Migrate features from rules.mk to data driven - IJK (#23276)
Diffstat (limited to 'keyboards/kira')
-rw-r--r-- | keyboards/kira/kira75/keyboard.json (renamed from keyboards/kira/kira75/info.json) | 10 | ||||
-rw-r--r-- | keyboards/kira/kira75/rules.mk | 12 | ||||
-rw-r--r-- | keyboards/kira/kira80/keyboard.json (renamed from keyboards/kira/kira80/info.json) | 9 | ||||
-rw-r--r-- | keyboards/kira/kira80/rules.mk | 10 |
4 files changed, 19 insertions, 22 deletions
diff --git a/keyboards/kira/kira75/info.json b/keyboards/kira/kira75/keyboard.json index 0a923fa44e..c48f2bf492 100644 --- a/keyboards/kira/kira75/info.json +++ b/keyboards/kira/kira75/keyboard.json @@ -8,6 +8,16 @@ "pid": "0x0000", "device_version": "0.0.1" }, + "features": { + "backlight": true, + "bootmagic": false, + "command": true, + "console": true, + "extrakey": true, + "mousekey": false, + "nkro": false, + "rgblight": true + }, "matrix_pins": { "cols": ["F6", "F7", "C7", "C6", "B6", "B5", "B4", "F5", "F4", "F1", "F0", "E6", "B3", "B2", "B1", "B0"], "rows": ["D0", "D1", "D2", "D3", "D5", "D4"] diff --git a/keyboards/kira/kira75/rules.mk b/keyboards/kira/kira75/rules.mk deleted file mode 100644 index 609fcf84a8..0000000000 --- a/keyboards/kira/kira75/rules.mk +++ /dev/null @@ -1,12 +0,0 @@ -# Build Options -# change yes to no to disable -# -BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite -MOUSEKEY_ENABLE = no # Mouse keys -EXTRAKEY_ENABLE = yes # Audio control and System control -CONSOLE_ENABLE = yes # Console for debug -COMMAND_ENABLE = yes # Commands for debug and configuration -NKRO_ENABLE = no # Enable N-Key Rollover -BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality -RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow -AUDIO_ENABLE = no # Audio output diff --git a/keyboards/kira/kira80/info.json b/keyboards/kira/kira80/keyboard.json index 0ec9e0b258..137e1f6565 100644 --- a/keyboards/kira/kira80/info.json +++ b/keyboards/kira/kira80/keyboard.json @@ -8,6 +8,15 @@ "pid": "0xC583", "device_version": "1.0.2" }, + "features": { + "backlight": true, + "bootmagic": false, + "command": true, + "console": false, + "extrakey": true, + "mousekey": false, + "nkro": false + }, "matrix_pins": { "cols": ["A1", "A2", "A3", "A4", "A5", "A6", "A7", "C7", "C6", "C5", "C4", "C3", "A0", "C2", "D7"], "rows": ["B1", "B2", "B3", "B5", "B6", "B7", "B0"] diff --git a/keyboards/kira/kira80/rules.mk b/keyboards/kira/kira80/rules.mk deleted file mode 100644 index f761646203..0000000000 --- a/keyboards/kira/kira80/rules.mk +++ /dev/null @@ -1,10 +0,0 @@ -# Build Options -# change yes to no to disable -# -BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite -MOUSEKEY_ENABLE = no # Mouse keys -EXTRAKEY_ENABLE = yes # Audio control and System control -CONSOLE_ENABLE = no # Console for debug -COMMAND_ENABLE = yes # Commands for debug and configuration -NKRO_ENABLE = no # Enable N-Key Rollover -BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |