aboutsummaryrefslogtreecommitdiff
path: root/cores/arduino/USBAPI.h
diff options
context:
space:
mode:
authorNicoHood <NicoHood@users.noreply.github.com>2015-12-19 01:49:54 +0100
committerNicoHood <NicoHood@users.noreply.github.com>2015-12-19 01:53:24 +0100
commit87b4f726a7a996056989ff6fd02280f94ac3cb90 (patch)
tree5b37c238f162ec03f7895fea9c2843181144688c /cores/arduino/USBAPI.h
parent513dbdd6901baba39d74ee28ded8b49d9a820069 (diff)
Added Long USB RecvControl call for >64 bytes
Diffstat (limited to 'cores/arduino/USBAPI.h')
-rw-r--r--cores/arduino/USBAPI.h1
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);