/** * \file * * * \author Andrea Righi * * \brief Configuration file for the usbmouse driver module */ #ifndef CFG_USBMOUSE_H #define CFG_USBMOUSE_H /** * Enable the usbmouse module. * * $WIZ$ type = "autoenabled" */ #define CONFIG_USBMOUSE 0 /** * Module logging level. * * $WIZ$ type = "enum" * $WIZ$ value_list = "log_level" */ #define USB_MOUSE_LOG_LEVEL LOG_LVL_INFO /** * module logging format. * * $WIZ$ type = "enum" * $WIZ$ value_list = "log_format" */ #define USB_MOUSE_LOG_FORMAT LOG_FMT_TERSE /** * USB vendor ID (please change this in your project, using a valid ID number!). * * $WIZ$ type = "hex" */ #define USB_MOUSE_VENDOR_ID 0xffff /** * USB product ID (please change this in your project, using a valid ID number!). * * $WIZ$ type = "hex" */ #define USB_MOUSE_PRODUCT_ID 0x0000 #endif /* CFG_USBMOUSE_H */