Fix mismatched aliased event and event stub function prototypes.
This commit is contained in:
@ -353,10 +353,15 @@ static int CDC_Device_getchar_Blocking(FILE* Stream)
|
||||
}
|
||||
#endif
|
||||
|
||||
void CDC_Device_Event_Stub(void)
|
||||
void CDC_Device_Event_Stub(USB_ClassInfo_CDC_Device_t* const CDCInterfaceInfo)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
void CDC_Device_Event_Stub_2(USB_ClassInfo_CDC_Device_t* const CDCInterfaceInfo, const uint8_t _1)
|
||||
{
|
||||
CDC_Device_Event_Stub(CDCInterfaceInfo);
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
|
Reference in New Issue
Block a user