diff options
author | Ryan <fauxpark@gmail.com> | 2022-07-26 09:04:09 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-26 00:04:09 +0100 |
commit | a939293aca697cb263f4972dbb1521d273fbf499 (patch) | |
tree | c582d4bf0a5937618d0f5cc12c6f70068bab56a5 /keyboards/coseyfannitutti/mulletpad | |
parent | b6ac0ecf824bccfdc4114a0a15fc2c95b0ccd14d (diff) | |
download | qmk_firmware-a939293aca697cb263f4972dbb1521d273fbf499.tar.gz qmk_firmware-a939293aca697cb263f4972dbb1521d273fbf499.zip |
Move keyboard USB IDs and strings to data driven: C (#17789)
Diffstat (limited to 'keyboards/coseyfannitutti/mulletpad')
-rw-r--r-- | keyboards/coseyfannitutti/mulletpad/config.h | 7 | ||||
-rw-r--r-- | keyboards/coseyfannitutti/mulletpad/info.json | 6 |
2 files changed, 6 insertions, 7 deletions
diff --git a/keyboards/coseyfannitutti/mulletpad/config.h b/keyboards/coseyfannitutti/mulletpad/config.h index e6d68469bf..3d5badf883 100644 --- a/keyboards/coseyfannitutti/mulletpad/config.h +++ b/keyboards/coseyfannitutti/mulletpad/config.h @@ -19,13 +19,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include "config_common.h" -/* USB Device descriptor parameter */ -#define VENDOR_ID 0xFEED -#define PRODUCT_ID 0x6666 -#define DEVICE_VER 0x0001 -#define MANUFACTURER coseyfannitutti -#define PRODUCT mulletpad - /* key matrix size */ #define MATRIX_ROWS 5 #define MATRIX_COLS 4 diff --git a/keyboards/coseyfannitutti/mulletpad/info.json b/keyboards/coseyfannitutti/mulletpad/info.json index 5decb0e450..2f467f9a11 100644 --- a/keyboards/coseyfannitutti/mulletpad/info.json +++ b/keyboards/coseyfannitutti/mulletpad/info.json @@ -1,7 +1,13 @@ { "keyboard_name": "mulletpad", + "manufacturer": "coseyfannitutti", "url": "https://github.com/coseyfannitutti/mulletpad", "maintainer": "coseyfannitutti", + "usb": { + "vid": "0xFEED", + "pid": "0x6666", + "device_version": "0.0.1" + }, "layouts": { "LAYOUT_numpad_5x4": { "layout": [{"label":"Num Lock", "x":0, "y":0}, {"label":"/", "x":1, "y":0}, {"label":"*", "x":2, "y":0}, {"label":"-", "x":3, "y":0}, {"label":"7", "x":0, "y":1}, {"label":"8", "x":1, "y":1}, {"label":"9", "x":2, "y":1}, {"label":"4", "x":0, "y":2}, {"label":"5", "x":1, "y":2}, {"label":"6", "x":2, "y":2}, {"label":"+", "x":3, "y":1, "h":2}, {"label":"1", "x":0, "y":3}, {"label":"2", "x":1, "y":3}, {"label":"3", "x":2, "y":3}, {"label":"0", "x":0, "y":4, "w":2}, {"label":".", "x":2, "y":4}, {"label":"Enter", "x":3, "y":3, "h":2}] |