X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/84d77833503151acffbdda6217fa8ce59c6b4b8a..cf610c5c91c3eee02dec7ca848acc8da831ad98a:/Demos/Host/ClassDriver/MouseHostWithParser/MouseHostWithParser.h?ds=sidebyside diff --git a/Demos/Host/ClassDriver/MouseHostWithParser/MouseHostWithParser.h b/Demos/Host/ClassDriver/MouseHostWithParser/MouseHostWithParser.h index cc539fbf2..038e69182 100644 --- a/Demos/Host/ClassDriver/MouseHostWithParser/MouseHostWithParser.h +++ b/Demos/Host/ClassDriver/MouseHostWithParser/MouseHostWithParser.h @@ -28,6 +28,11 @@ this software. */ +/** \file + * + * Header file for MouseHost.c. + */ + #ifndef _MOUSE_HOST_H_ #define _MOUSE_HOST_H_ @@ -43,14 +48,9 @@ #include #include #include - #include + #include - #include "HIDReport.h" - /* Macros: */ - /** Pipe number for the mouse report data pipe */ - #define MOUSE_DATAPIPE 1 - /** LED mask for the library LED driver, to indicate that the USB interface is not ready. */ #define LEDMASK_USB_NOTREADY LEDS_LED1 @@ -63,16 +63,25 @@ /** LED mask for the library LED driver, to indicate that an error has occurred in the USB interface. */ #define LEDMASK_USB_ERROR (LEDS_LED1 | LEDS_LED3) + /** HID Report Descriptor Usage Page value for a toggle button */ + #define USAGE_PAGE_BUTTON 0x09 + + /** HID Report Descriptor Usage Page value for a Generic Desktop Control */ + #define USAGE_PAGE_GENERIC_DCTRL 0x01 + + /** HID Report Descriptor Usage value for a X axis movement */ + #define USAGE_X 0x30 + + /** HID Report Descriptor Usage value for a Y axis movement */ + #define USAGE_Y 0x31 + /* Function Prototypes: */ - void Mouse_HID_Task(void); void SetupHardware(void); - void EVENT_USB_HostError(const uint8_t ErrorCode); - void EVENT_USB_DeviceAttached(void); - void EVENT_USB_DeviceUnattached(void); - void EVENT_USB_DeviceEnumerationFailed(const uint8_t ErrorCode, const uint8_t SubErrorCode); - void EVENT_USB_DeviceEnumerationComplete(void); - - void ProcessMouseReport(uint8_t* MouseReport); - + void EVENT_USB_Host_HostError(const uint8_t ErrorCode); + void EVENT_USB_Host_DeviceAttached(void); + void EVENT_USB_Host_DeviceUnattached(void); + void EVENT_USB_Host_DeviceEnumerationFailed(const uint8_t ErrorCode, const uint8_t SubErrorCode); + void EVENT_USB_Host_DeviceEnumerationComplete(void); + #endif