aboutsummaryrefslogtreecommitdiff
path: root/cores/arduino/PluggableUSB.h
diff options
context:
space:
mode:
authorMartino Facchin <m.facchin@arduino.cc>2015-06-08 12:31:24 +0200
committerCristian Maglie <c.maglie@arduino.cc>2015-07-16 13:12:14 +0200
commitb38d7f07f0ee8e5e9bdc912966dcee4ae3a8b3e7 (patch)
treee41b3d7525bf0a43fa3ed814a8c8b40ab7f64fca /cores/arduino/PluggableUSB.h
parent353ef39c23c7c9561fc5357d460c2d9cb3c4f320 (diff)
implement PUSB modules as linked list
Diffstat (limited to 'cores/arduino/PluggableUSB.h')
-rw-r--r--cores/arduino/PluggableUSB.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cores/arduino/PluggableUSB.h b/cores/arduino/PluggableUSB.h
index 877a9b0..e066d37 100644
--- a/cores/arduino/PluggableUSB.h
+++ b/cores/arduino/PluggableUSB.h
@@ -31,7 +31,7 @@ typedef struct
int8_t (*getInterface)(u8* interfaceNum);
int8_t (*getDescriptor)(int8_t t);
int8_t numEndpoints;
- u8 endpointType[6];
+ u8 endpointType[];
} PUSBCallbacks;
typedef struct