From 01473075f8e78adcfbd4f9f4b6bb1d7682a7ee4d Mon Sep 17 00:00:00 2001 From: Joel Challis Date: Fri, 15 Mar 2024 01:42:55 +0000 Subject: Migrate features from rules.mk to data driven - EFGH (#23248) --- keyboards/hfdkb/ac001/info.json | 55 ------------------------------- keyboards/hfdkb/ac001/keyboard.json | 64 +++++++++++++++++++++++++++++++++++++ keyboards/hfdkb/ac001/rules.mk | 12 ------- 3 files changed, 64 insertions(+), 67 deletions(-) delete mode 100644 keyboards/hfdkb/ac001/info.json create mode 100644 keyboards/hfdkb/ac001/keyboard.json delete mode 100644 keyboards/hfdkb/ac001/rules.mk (limited to 'keyboards/hfdkb') diff --git a/keyboards/hfdkb/ac001/info.json b/keyboards/hfdkb/ac001/info.json deleted file mode 100644 index 4c45251504..0000000000 --- a/keyboards/hfdkb/ac001/info.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "keyboard_name": "ac001", - "manufacturer": "hfd", - "url": "", - "maintainer": "jonylee@hfd", - "usb": { - "vid": "0xFFFE", - "pid": "0x0001", - "device_version": "0.0.1", - "force_nkro": true - }, - "rgb_matrix": { - "animations": { - "breathing": true, - "cycle_all": true, - "cycle_left_right": true, - "rainbow_moving_chevron": true, - "multisplash": true - }, - "driver": "ws2812", - "react_on_keyup": true, - "sleep": true - }, - "matrix_pins": { - "cols": ["A5", "A6", "A7", "C4", "C5"], - "rows": ["B15"] - }, - "diode_direction": "ROW2COL", - "eeprom": { - "driver": "wear_leveling", - "wear_leveling": { - "driver": "spi_flash", - "backing_size": 8192 - } - }, - "ws2812": { - "pin": "A1" - }, - "qmk": { - "tap_keycode_delay": 5 - }, - "processor": "WB32FQ95", - "bootloader": "wb32-dfu", - "layouts": { - "LAYOUT": { - "layout": [ - {"matrix": [0, 0], "x": 0, "y": 0}, - {"matrix": [0, 1], "x": 1, "y": 0}, - {"matrix": [0, 2], "x": 2, "y": 0}, - {"matrix": [0, 3], "x": 3, "y": 0}, - {"matrix": [0, 4], "x": 4, "y": 0} - ] - } - } -} diff --git a/keyboards/hfdkb/ac001/keyboard.json b/keyboards/hfdkb/ac001/keyboard.json new file mode 100644 index 0000000000..daf3e735f0 --- /dev/null +++ b/keyboards/hfdkb/ac001/keyboard.json @@ -0,0 +1,64 @@ +{ + "keyboard_name": "ac001", + "manufacturer": "hfd", + "url": "", + "maintainer": "jonylee@hfd", + "usb": { + "vid": "0xFFFE", + "pid": "0x0001", + "device_version": "0.0.1", + "force_nkro": true + }, + "rgb_matrix": { + "animations": { + "breathing": true, + "cycle_all": true, + "cycle_left_right": true, + "rainbow_moving_chevron": true, + "multisplash": true + }, + "driver": "ws2812", + "react_on_keyup": true, + "sleep": true + }, + "features": { + "bootmagic": true, + "command": false, + "console": false, + "extrakey": true, + "mousekey": false, + "nkro": true, + "rgb_matrix": true + }, + "matrix_pins": { + "cols": ["A5", "A6", "A7", "C4", "C5"], + "rows": ["B15"] + }, + "diode_direction": "ROW2COL", + "eeprom": { + "driver": "wear_leveling", + "wear_leveling": { + "driver": "spi_flash", + "backing_size": 8192 + } + }, + "ws2812": { + "pin": "A1" + }, + "qmk": { + "tap_keycode_delay": 5 + }, + "processor": "WB32FQ95", + "bootloader": "wb32-dfu", + "layouts": { + "LAYOUT": { + "layout": [ + {"matrix": [0, 0], "x": 0, "y": 0}, + {"matrix": [0, 1], "x": 1, "y": 0}, + {"matrix": [0, 2], "x": 2, "y": 0}, + {"matrix": [0, 3], "x": 3, "y": 0}, + {"matrix": [0, 4], "x": 4, "y": 0} + ] + } + } +} diff --git a/keyboards/hfdkb/ac001/rules.mk b/keyboards/hfdkb/ac001/rules.mk deleted file mode 100644 index 1358ab075a..0000000000 --- a/keyboards/hfdkb/ac001/rules.mk +++ /dev/null @@ -1,12 +0,0 @@ -# Build Options -# change yes to no to disable -# -BOOTMAGIC_ENABLE = yes # 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 -RGB_MATRIX_ENABLE = yes -- cgit v1.2.3