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/ilumkb | |
| parent | 16ad09299c25d3338771c5743729f0ec4b90586b (diff) | |
Migrate features from rules.mk to data driven - IJK (#23276)
Diffstat (limited to 'keyboards/ilumkb')
| -rw-r--r-- | keyboards/ilumkb/primus75/keyboard.json (renamed from keyboards/ilumkb/primus75/info.json) | 9 | ||||
| -rw-r--r-- | keyboards/ilumkb/primus75/rules.mk | 12 | ||||
| -rw-r--r-- | keyboards/ilumkb/simpler61/keyboard.json (renamed from keyboards/ilumkb/simpler61/info.json) | 9 | ||||
| -rw-r--r-- | keyboards/ilumkb/simpler61/rules.mk | 13 | ||||
| -rw-r--r-- | keyboards/ilumkb/simpler64/keyboard.json (renamed from keyboards/ilumkb/simpler64/info.json) | 9 | ||||
| -rw-r--r-- | keyboards/ilumkb/simpler64/rules.mk | 13 | ||||
| -rw-r--r-- | keyboards/ilumkb/volcano660/keyboard.json (renamed from keyboards/ilumkb/volcano660/info.json) | 9 | ||||
| -rw-r--r-- | keyboards/ilumkb/volcano660/rules.mk | 12 |
8 files changed, 36 insertions, 50 deletions
diff --git a/keyboards/ilumkb/primus75/info.json b/keyboards/ilumkb/primus75/keyboard.json index 5e32832622..f00c146740 100644 --- a/keyboards/ilumkb/primus75/info.json +++ b/keyboards/ilumkb/primus75/keyboard.json | |||
| @@ -8,6 +8,15 @@ | |||
| 8 | "pid": "0x1014", | 8 | "pid": "0x1014", |
| 9 | "device_version": "0.0.1" | 9 | "device_version": "0.0.1" |
| 10 | }, | 10 | }, |
| 11 | "features": { | ||
| 12 | "backlight": true, | ||
| 13 | "bootmagic": true, | ||
| 14 | "command": false, | ||
| 15 | "console": false, | ||
| 16 | "extrakey": true, | ||
| 17 | "mousekey": true, | ||
| 18 | "nkro": true | ||
| 19 | }, | ||
| 11 | "matrix_pins": { | 20 | "matrix_pins": { |
| 12 | "cols": ["F0", "F1", "E6", "C7", "C6", "F5", "D4", "B1", "B0", "B5", "B4", "D7", "D6", "B3", "F4", "F6"], | 21 | "cols": ["F0", "F1", "E6", "C7", "C6", "F5", "D4", "B1", "B0", "B5", "B4", "D7", "D6", "B3", "F4", "F6"], |
| 13 | "rows": ["D0", "D1", "D2", "D3", "D5", "B7"] | 22 | "rows": ["D0", "D1", "D2", "D3", "D5", "B7"] |
diff --git a/keyboards/ilumkb/primus75/rules.mk b/keyboards/ilumkb/primus75/rules.mk deleted file mode 100644 index b325f3f0c7..0000000000 --- a/keyboards/ilumkb/primus75/rules.mk +++ /dev/null | |||
| @@ -1,12 +0,0 @@ | |||
| 1 | # Build Options | ||
| 2 | # change yes to no to disable | ||
| 3 | # | ||
| 4 | BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite | ||
| 5 | MOUSEKEY_ENABLE = yes # Mouse keys | ||
| 6 | EXTRAKEY_ENABLE = yes # Audio control and System control | ||
| 7 | CONSOLE_ENABLE = no # Console for debug | ||
| 8 | COMMAND_ENABLE = no # Commands for debug and configuration | ||
| 9 | NKRO_ENABLE = yes # Enable N-Key Rollover | ||
| 10 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | ||
| 11 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | ||
| 12 | AUDIO_ENABLE = no # Audio output | ||
diff --git a/keyboards/ilumkb/simpler61/info.json b/keyboards/ilumkb/simpler61/keyboard.json index 9f8f5f014a..8e7680fb9f 100644 --- a/keyboards/ilumkb/simpler61/info.json +++ b/keyboards/ilumkb/simpler61/keyboard.json | |||
| @@ -48,6 +48,15 @@ | |||
| 48 | "led_flush_limit": 26, | 48 | "led_flush_limit": 26, |
| 49 | "sleep": true | 49 | "sleep": true |
| 50 | }, | 50 | }, |
| 51 | "features": { | ||
| 52 | "bootmagic": true, | ||
| 53 | "command": true, | ||
| 54 | "console": false, | ||
| 55 | "extrakey": true, | ||
| 56 | "mousekey": true, | ||
| 57 | "nkro": true, | ||
| 58 | "rgb_matrix": true | ||
| 59 | }, | ||
| 51 | "matrix_pins": { | 60 | "matrix_pins": { |
| 52 | "cols": ["B0", "B1", "B2", "B3", "B7", "D4", "D6", "D7", "B4", "B5", "B6", "C6", "C7", "F7"], | 61 | "cols": ["B0", "B1", "B2", "B3", "B7", "D4", "D6", "D7", "B4", "B5", "B6", "C6", "C7", "F7"], |
| 53 | "rows": ["F6", "F5", "F4", "F1", "F0"] | 62 | "rows": ["F6", "F5", "F4", "F1", "F0"] |
diff --git a/keyboards/ilumkb/simpler61/rules.mk b/keyboards/ilumkb/simpler61/rules.mk deleted file mode 100644 index c2f7c0e093..0000000000 --- a/keyboards/ilumkb/simpler61/rules.mk +++ /dev/null | |||
| @@ -1,13 +0,0 @@ | |||
| 1 | # Build Options | ||
| 2 | # change yes to no to disable | ||
| 3 | # | ||
| 4 | BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite | ||
| 5 | MOUSEKEY_ENABLE = yes # Mouse keys | ||
| 6 | EXTRAKEY_ENABLE = yes # Audio control and System control | ||
| 7 | CONSOLE_ENABLE = no # Console for debug | ||
| 8 | COMMAND_ENABLE = yes # Commands for debug and configuration | ||
| 9 | NKRO_ENABLE = yes # Enable N-Key Rollover | ||
| 10 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
| 11 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | ||
| 12 | AUDIO_ENABLE = no # Audio output | ||
| 13 | RGB_MATRIX_ENABLE = yes # Use RGB matrix | ||
diff --git a/keyboards/ilumkb/simpler64/info.json b/keyboards/ilumkb/simpler64/keyboard.json index af617da861..65aa627b04 100644 --- a/keyboards/ilumkb/simpler64/info.json +++ b/keyboards/ilumkb/simpler64/keyboard.json | |||
| @@ -48,6 +48,15 @@ | |||
| 48 | "led_flush_limit": 26, | 48 | "led_flush_limit": 26, |
| 49 | "sleep": true | 49 | "sleep": true |
| 50 | }, | 50 | }, |
| 51 | "features": { | ||
| 52 | "bootmagic": true, | ||
| 53 | "command": true, | ||
| 54 | "console": false, | ||
| 55 | "extrakey": true, | ||
| 56 | "mousekey": true, | ||
| 57 | "nkro": true, | ||
| 58 | "rgb_matrix": true | ||
| 59 | }, | ||
| 51 | "matrix_pins": { | 60 | "matrix_pins": { |
| 52 | "cols": ["B0", "B1", "B2", "B3", "B7", "D4", "D6", "D7", "B4", "B5", "B6", "C6", "C7", "F7"], | 61 | "cols": ["B0", "B1", "B2", "B3", "B7", "D4", "D6", "D7", "B4", "B5", "B6", "C6", "C7", "F7"], |
| 53 | "rows": ["F6", "F5", "F4", "F1", "F0"] | 62 | "rows": ["F6", "F5", "F4", "F1", "F0"] |
diff --git a/keyboards/ilumkb/simpler64/rules.mk b/keyboards/ilumkb/simpler64/rules.mk deleted file mode 100644 index c2f7c0e093..0000000000 --- a/keyboards/ilumkb/simpler64/rules.mk +++ /dev/null | |||
| @@ -1,13 +0,0 @@ | |||
| 1 | # Build Options | ||
| 2 | # change yes to no to disable | ||
| 3 | # | ||
| 4 | BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite | ||
| 5 | MOUSEKEY_ENABLE = yes # Mouse keys | ||
| 6 | EXTRAKEY_ENABLE = yes # Audio control and System control | ||
| 7 | CONSOLE_ENABLE = no # Console for debug | ||
| 8 | COMMAND_ENABLE = yes # Commands for debug and configuration | ||
| 9 | NKRO_ENABLE = yes # Enable N-Key Rollover | ||
| 10 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | ||
| 11 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | ||
| 12 | AUDIO_ENABLE = no # Audio output | ||
| 13 | RGB_MATRIX_ENABLE = yes # Use RGB matrix | ||
diff --git a/keyboards/ilumkb/volcano660/info.json b/keyboards/ilumkb/volcano660/keyboard.json index 1af06ccc47..7412a249f8 100644 --- a/keyboards/ilumkb/volcano660/info.json +++ b/keyboards/ilumkb/volcano660/keyboard.json | |||
| @@ -8,6 +8,15 @@ | |||
| 8 | "pid": "0x0002", | 8 | "pid": "0x0002", |
| 9 | "device_version": "0.0.1" | 9 | "device_version": "0.0.1" |
| 10 | }, | 10 | }, |
| 11 | "features": { | ||
| 12 | "backlight": true, | ||
| 13 | "bootmagic": true, | ||
| 14 | "command": false, | ||
| 15 | "console": false, | ||
| 16 | "extrakey": true, | ||
| 17 | "mousekey": true, | ||
| 18 | "nkro": true | ||
| 19 | }, | ||
| 11 | "matrix_pins": { | 20 | "matrix_pins": { |
| 12 | "cols": ["C6", "C7", "F7", "F6", "F5", "F4", "F1", "F0", "D3", "D5", "D4", "D6", "D7", "B4", "B5"], | 21 | "cols": ["C6", "C7", "F7", "F6", "F5", "F4", "F1", "F0", "D3", "D5", "D4", "D6", "D7", "B4", "B5"], |
| 13 | "rows": ["B0", "B1", "B2", "B3", "B6"] | 22 | "rows": ["B0", "B1", "B2", "B3", "B6"] |
diff --git a/keyboards/ilumkb/volcano660/rules.mk b/keyboards/ilumkb/volcano660/rules.mk deleted file mode 100644 index b325f3f0c7..0000000000 --- a/keyboards/ilumkb/volcano660/rules.mk +++ /dev/null | |||
| @@ -1,12 +0,0 @@ | |||
| 1 | # Build Options | ||
| 2 | # change yes to no to disable | ||
| 3 | # | ||
| 4 | BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite | ||
| 5 | MOUSEKEY_ENABLE = yes # Mouse keys | ||
| 6 | EXTRAKEY_ENABLE = yes # Audio control and System control | ||
| 7 | CONSOLE_ENABLE = no # Console for debug | ||
| 8 | COMMAND_ENABLE = no # Commands for debug and configuration | ||
| 9 | NKRO_ENABLE = yes # Enable N-Key Rollover | ||
| 10 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | ||
| 11 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | ||
| 12 | AUDIO_ENABLE = no # Audio output | ||
