/** * \file * * * \author Andrea Righi * * \brief Configuration file for the USB serial driver module */ #ifndef CFG_USBSER_H #define CFG_USBSER_H /** * Enable the usb-serial module. * * $WIZ$ type = "autoenabled" */ #define CONFIG_USBSER 0 /** * Module logging level. * * $WIZ$ type = "enum" * $WIZ$ value_list = "log_level" */ #define USB_SERIAL_LOG_LEVEL LOG_LVL_INFO /** * module logging format. * * $WIZ$ type = "enum" * $WIZ$ value_list = "log_format" */ #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 */