diff options
author | Cristian Maglie <c.maglie@arduino.cc> | 2015-12-23 15:33:14 +0100 |
---|---|---|
committer | Cristian Maglie <c.maglie@arduino.cc> | 2015-12-23 15:35:08 +0100 |
commit | c96d9bc6ec215a60a781d9a07b31c86af0ae56eb (patch) | |
tree | 04a8fc9b578c18445c9ed9a597b0e44d4f02b7b5 /cores/arduino | |
parent | 23696100479e0dca621a0e7fa90d3e487fca2a35 (diff) | |
parent | 87b4f726a7a996056989ff6fd02280f94ac3cb90 (diff) |
Merge NicoHood's fix for USB_SendControl with len>64
Fix #4325
Diffstat (limited to 'cores/arduino')
-rw-r--r-- | cores/arduino/USBAPI.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cores/arduino/USBAPI.h b/cores/arduino/USBAPI.h index f22ab6a..358444e 100644 --- a/cores/arduino/USBAPI.h +++ b/cores/arduino/USBAPI.h @@ -193,6 +193,7 @@ bool CDC_Setup(USBSetup& setup); int USB_SendControl(uint8_t flags, const void* d, int len); int USB_RecvControl(void* d, int len); +int USB_RecvControlLong(void* d, int len); uint8_t USB_Available(uint8_t ep); uint8_t USB_SendSpace(uint8_t ep); |