diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-05-31 20:44:22 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-05-31 21:05:04 -0400 |
commit | ea9eac6c3878b3eeb6dd6933f7f65f0f917a2d87 (patch) | |
tree | f0968d2f19cead08938c3cc72cb1997a88831388 /src | |
parent | bceb8ddee27b44327f5ab051dd7be9eb28effff9 (diff) | |
download | kutter-ea9eac6c3878b3eeb6dd6933f7f65f0f917a2d87.tar.gz kutter-ea9eac6c3878b3eeb6dd6933f7f65f0f917a2d87.tar.xz kutter-ea9eac6c3878b3eeb6dd6933f7f65f0f917a2d87.zip |
Kconfig: Change the default usb vendor/product id
Change the product/vendor id to 0x1d50/0x614e, which has been reserved
for Klipper (thanks to the openmoko project).
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src')
-rw-r--r-- | src/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Kconfig b/src/Kconfig index 818dd4f4..b5b75d74 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -53,10 +53,10 @@ menu "USB ids" config USB_VENDOR_ID hex "USB vendor ID" - default 0x2341 + default 0x1d50 config USB_DEVICE_ID hex "USB device ID" - default 0xabcd + default 0x614e config USB_SERIAL_NUMBER_CHIPID depends on HAVE_CHIPID bool "USB serial number from CHIPID" |