diff options
author | Ryan <fauxpark@gmail.com> | 2022-08-15 11:53:19 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-15 02:53:19 +0100 |
commit | 1027aed83a264d03cf3bbfd4a85ca7d240217b0f (patch) | |
tree | 17d41fcd7ac83fd21b0b1bac30eb16ac8e1be4b6 /keyboards/ferris/sweep | |
parent | 4c91e5bef8324d6b21625aa698f153d9b47600d0 (diff) | |
download | qmk_firmware-1027aed83a264d03cf3bbfd4a85ca7d240217b0f.tar.gz qmk_firmware-1027aed83a264d03cf3bbfd4a85ca7d240217b0f.zip |
Move keyboard USB IDs and strings to data driven, pass 2: F-I (#17958)
Diffstat (limited to 'keyboards/ferris/sweep')
-rw-r--r-- | keyboards/ferris/sweep/config.h | 7 | ||||
-rw-r--r-- | keyboards/ferris/sweep/info.json | 9 |
2 files changed, 9 insertions, 7 deletions
diff --git a/keyboards/ferris/sweep/config.h b/keyboards/ferris/sweep/config.h index 4d4d7d309f..c7d5bcf91d 100644 --- a/keyboards/ferris/sweep/config.h +++ b/keyboards/ferris/sweep/config.h @@ -21,13 +21,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include "config_common.h" -/* USB Device descriptor parameter */ -#define VENDOR_ID 0xC2AB -#define PRODUCT_ID 0x3939 -#define DEVICE_VER 0x0001 -#define MANUFACTURER DPB -#define PRODUCT Ferris sweep - /* key matrix size */ #define MATRIX_ROWS 8 #define MATRIX_COLS 5 diff --git a/keyboards/ferris/sweep/info.json b/keyboards/ferris/sweep/info.json new file mode 100644 index 0000000000..fc53028c34 --- /dev/null +++ b/keyboards/ferris/sweep/info.json @@ -0,0 +1,9 @@ +{ + "keyboard_name": "Ferris sweep", + "manufacturer": "DPB", + "usb": { + "vid": "0xC2AB", + "pid": "0x3939", + "device_version": "0.0.1" + } +} |