Added multiple Report ID support to the HID class driver. Removed OUT endpoint suppor...
[pub/USBasp.git] / Demos / Device / GenericHID / GenericHID.c
index b933e45..172df7f 100644 (file)
@@ -47,9 +47,6 @@ USB_ClassInfo_HID_t Generic_HID_Interface =
                .ReportINEndpointNumber  = GENERIC_IN_EPNUM,\r
                .ReportINEndpointSize    = GENERIC_EPSIZE,\r
                \r
-               .ReportOUTEndpointNumber = GENERIC_OUT_EPNUM,\r
-               .ReportOUTEndpointSize   = GENERIC_EPSIZE,\r
-               \r
                .ReportINBufferSize      = GENERIC_REPORT_SIZE,\r
 \r
                .UsingReportProtocol     = true,\r
@@ -133,7 +130,7 @@ ISR(TIMER0_COMPA_vect, ISR_BLOCK)
  *\r
  *  \return Number of bytes written in the report (or zero if no report is to be sent\r
  */\r
-uint16_t CALLBACK_USB_HID_CreateNextHIDReport(USB_ClassInfo_HID_t* HIDInterfaceInfo, void* ReportData)\r
+uint16_t CALLBACK_USB_HID_CreateNextHIDReport(USB_ClassInfo_HID_t* HIDInterfaceInfo, uint8_t* ReportID, void* ReportData)\r
 {\r
        // Create generic HID report here\r
        \r
@@ -146,7 +143,8 @@ uint16_t CALLBACK_USB_HID_CreateNextHIDReport(USB_ClassInfo_HID_t* HIDInterfaceI
  *  \param ReportData  Pointer to a buffer where the created report has been stored\r
  *  \param ReportSize  Size in bytes of the received HID report\r
  */\r
-void CALLBACK_USB_HID_ProcessReceivedHIDReport(USB_ClassInfo_HID_t* HIDInterfaceInfo, void* ReportData, uint16_t ReportSize)\r
+void CALLBACK_USB_HID_ProcessReceivedHIDReport(USB_ClassInfo_HID_t* HIDInterfaceInfo, uint8_t ReportID,\r
+                                               void* ReportData, uint16_t ReportSize)\r
 {\r
        // Process received generic HID report here\r
 }\r