diff options
Diffstat (limited to 'lib/lufa/LUFA/Drivers/USB/Class/Device/CDCClassDevice.c')
-rw-r--r-- | lib/lufa/LUFA/Drivers/USB/Class/Device/CDCClassDevice.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/lufa/LUFA/Drivers/USB/Class/Device/CDCClassDevice.c b/lib/lufa/LUFA/Drivers/USB/Class/Device/CDCClassDevice.c index 867548c00..93930bc99 100644 --- a/lib/lufa/LUFA/Drivers/USB/Class/Device/CDCClassDevice.c +++ b/lib/lufa/LUFA/Drivers/USB/Class/Device/CDCClassDevice.c | |||
@@ -353,10 +353,15 @@ static int CDC_Device_getchar_Blocking(FILE* Stream) | |||
353 | } | 353 | } |
354 | #endif | 354 | #endif |
355 | 355 | ||
356 | void CDC_Device_Event_Stub(void) | 356 | void CDC_Device_Event_Stub(USB_ClassInfo_CDC_Device_t* const CDCInterfaceInfo) |
357 | { | 357 | { |
358 | 358 | ||
359 | } | 359 | } |
360 | 360 | ||
361 | void CDC_Device_Event_Stub_2(USB_ClassInfo_CDC_Device_t* const CDCInterfaceInfo, const uint8_t _1) | ||
362 | { | ||
363 | CDC_Device_Event_Stub(CDCInterfaceInfo); | ||
364 | } | ||
365 | |||
361 | #endif | 366 | #endif |
362 | 367 | ||