lwIP: add configuration parameters
[bertos.git] / bertos / cfg / cfg_usbser.h
index 88fcd1904f8c7edd057218dbc1a1230e950833ea..1fa44e7329320d1419e563f1b8ece35f9759aa8b 100644 (file)
 #ifndef CFG_USBSER_H
 #define CFG_USBSER_H
 
+/**
+ * Enable the usb-serial module.
+ *
+ * $WIZ$ type = "autoenabled"
+ */
+#define CONFIG_USBSER 0
+
 /**
  * Module logging level.
  *
  */
 #define USB_SERIAL_LOG_FORMAT     LOG_FMT_TERSE
 
+/**
+ * USB vendor ID (please change this in your project, using a valid ID number!).
+ *
+ * $WIZ$ type = "hex"
+ */
+#define USB_SERIAL_VENDOR_ID      0x05f9
+
+/**
+ * USB product ID (please change this in your project, using a valid ID number!).
+ *
+ * $WIZ$ type = "hex"
+ */
+#define USB_SERIAL_PRODUCT_ID     0xffff
+
 #endif /* CFG_USBSER_H */