/** * \file * * * \author Andrea Righi * * \brief Generic USB mouse device driver. * * \attention The API is work in progress and may change in future versions. * * $WIZ$ module_name = "usbmouse" * $WIZ$ module_configuration = "bertos/cfg/cfg_usbmouse.h" * $WIZ$ module_depends = "usb" */ #ifndef USBMOUSE_H #define USBMOUSE_H void usbmouse_sendEvent(int8_t x, int8_t y, int8_t buttons); int usbmouse_init(int unit); #endif /* USBMOUSE_H */