diff options
| author | Joel Challis | 2024-03-30 11:43:15 +0100 |
|---|---|---|
| committer | GitHub | 2024-03-30 11:43:15 +0100 |
| commit | 426bb9c651a292dce6ae01e7ed9d41d94dbba99f (patch) | |
| tree | fbee5244f85aada3c7c17d52cd3dace080f7e06f /keyboards/drhigsby/bkf | |
| parent | 86e7df0c2a75baa00238f5350a912d5a4f8b622d (diff) | |
Migrate features and LTO from rules.mk to data driven (#23302)
Diffstat (limited to 'keyboards/drhigsby/bkf')
| -rw-r--r-- | keyboards/drhigsby/bkf/keyboard.json (renamed from keyboards/drhigsby/bkf/info.json) | 9 | ||||
| -rw-r--r-- | keyboards/drhigsby/bkf/rules.mk | 14 |
2 files changed, 9 insertions, 14 deletions
diff --git a/keyboards/drhigsby/bkf/info.json b/keyboards/drhigsby/bkf/keyboard.json index 25d79416dc..97bb5919fb 100644 --- a/keyboards/drhigsby/bkf/info.json +++ b/keyboards/drhigsby/bkf/keyboard.json @@ -8,6 +8,15 @@ "pid": "0x0003", "device_version": "0.0.1" }, + "features": { + "bootmagic": false, + "command": false, + "console": false, + "encoder": true, + "extrakey": true, + "mousekey": false, + "nkro": true + }, "matrix_pins": { "cols": ["B6", "B2", "D3", "D2", "D1", "D0", "D4", "C6", "D7", "E6", "B4", "B5"], "rows": ["F6", "F7", "B1", "B3"] diff --git a/keyboards/drhigsby/bkf/rules.mk b/keyboards/drhigsby/bkf/rules.mk deleted file mode 100644 index 89c72050b8..0000000000 --- a/keyboards/drhigsby/bkf/rules.mk +++ /dev/null @@ -1,14 +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 = no # Commands for debug and configuration -NKRO_ENABLE = yes # Enable N-Key Rollover -BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality -RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow -AUDIO_ENABLE = no # Audio output -LTO_ENABLE = no # Use link time optimization -ENCODER_ENABLE = yes |