X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/b61049f7222a6290e2164966bd90f636bcb577f9..24f730fce3f2022762011d795c3feada5ef874b3:/Demos/Host/LowLevel/MouseHostWithParser/MouseHostWithParser.h diff --git a/Demos/Host/LowLevel/MouseHostWithParser/MouseHostWithParser.h b/Demos/Host/LowLevel/MouseHostWithParser/MouseHostWithParser.h index 71d11a1ee..9183cca1a 100644 --- a/Demos/Host/LowLevel/MouseHostWithParser/MouseHostWithParser.h +++ b/Demos/Host/LowLevel/MouseHostWithParser/MouseHostWithParser.h @@ -28,6 +28,11 @@ this software. */ +/** \file + * + * Header file for MouseHostWithParser.c. + */ + #ifndef _MOUSE_HOST_H_ #define _MOUSE_HOST_H_ @@ -49,7 +54,7 @@ /* Macros: */ /** Pipe number for the mouse report data pipe */ - #define MOUSE_DATAPIPE 1 + #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 @@ -67,11 +72,11 @@ 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 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); void ProcessMouseReport(uint8_t* MouseReport);