diff options
Diffstat (limited to 'src/Kconfig')
-rw-r--r-- | src/Kconfig | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/Kconfig b/src/Kconfig index f667dae4..6f98b8c8 100644 --- a/src/Kconfig +++ b/src/Kconfig @@ -47,6 +47,22 @@ config SERIAL_BAUD Specify the baud rate of the serial port. This should be set to 250000. Read the FAQ before changing this value. +# Generic configuration options for USB +menu "USB ids" + depends on USBSERIAL + +config USB_VENDOR_ID + hex "USB vendor ID" + default 0x2341 +config USB_DEVICE_ID + hex "USB device ID" + default 0xabcd +config USB_SERIAL_NUMBER + string "USB serial number" + default "12345" + +endmenu + # Step timing customization config CUSTOM_STEP_DELAY bool "Specify a custom step pulse duration" |