aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2020-05-31 20:44:22 -0400
committerKevin O'Connor <kevin@koconnor.net>2020-05-31 21:05:04 -0400
commitea9eac6c3878b3eeb6dd6933f7f65f0f917a2d87 (patch)
treef0968d2f19cead08938c3cc72cb1997a88831388
parentbceb8ddee27b44327f5ab051dd7be9eb28effff9 (diff)
downloadkutter-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>
-rw-r--r--docs/Config_Changes.md5
-rw-r--r--src/Kconfig4
2 files changed, 7 insertions, 2 deletions
diff --git a/docs/Config_Changes.md b/docs/Config_Changes.md
index c0367bfa..4234e3df 100644
--- a/docs/Config_Changes.md
+++ b/docs/Config_Changes.md
@@ -6,6 +6,11 @@ All dates in this document are approximate.
# Changes
+20200531: The default USB vendor/product id is now 0x1d50/0x614e.
+These new ids are reserved for Klipper (thanks to the openmoko
+project). This change should not require any config changes, but the
+new ids may appear in system logs.
+
20200524: The default value for the tmc5160 pwm_freq field is now zero
(instead of one).
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"