Fix incorrect Event call name in USBInterrupt.c.
This commit is contained in:
parent
c5038f1bf4
commit
042d3288ad
4 changed files with 9 additions and 8 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue