mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-09-10 17:15:43 +00:00
Fix incorrect Event call name in USBInterrupt.c.
This commit is contained in:
@@ -118,7 +118,7 @@ void EVENT_USB_Device_ConfigurationChanged(void)
|
||||
}
|
||||
|
||||
/** Event handler for the library USB Unhandled Control Request event. */
|
||||
void EVENT_USB_Device_Device_UnhandledControlRequest(void)
|
||||
void EVENT_USB_Device_UnhandledControlRequest(void)
|
||||
{
|
||||
HID_Device_ProcessControlRequest(&Mouse_HID_Interface);
|
||||
}
|
||||
|
||||
@@ -80,10 +80,10 @@
|
||||
/* Function Prototypes: */
|
||||
void SetupHardware(void);
|
||||
|
||||
void EVENT_USB_Device_Device_Connect(void);
|
||||
void EVENT_USB_Device_Device_Disconnect(void);
|
||||
void EVENT_USB_Device_Device_ConfigurationChanged(void);
|
||||
void EVENT_USB_Device_Device_UnhandledControlRequest(void);
|
||||
void EVENT_USB_Device_Connect(void);
|
||||
void EVENT_USB_Device_Disconnect(void);
|
||||
void EVENT_USB_Device_ConfigurationChanged(void);
|
||||
void EVENT_USB_Device_UnhandledControlRequest(void);
|
||||
|
||||
bool CALLBACK_HID_Device_CreateHIDReport(USB_ClassInfo_HID_Device_t* const HIDInterfaceInfo, uint8_t* const ReportID,
|
||||
void* ReportData, uint16_t* ReportSize);
|
||||
|
||||
Reference in New Issue
Block a user