diff options
author | Martino Facchin <m.facchin@arduino.cc> | 2015-06-08 12:31:24 +0200 |
---|---|---|
committer | Cristian Maglie <c.maglie@arduino.cc> | 2015-07-16 13:12:14 +0200 |
commit | b38d7f07f0ee8e5e9bdc912966dcee4ae3a8b3e7 (patch) | |
tree | e41b3d7525bf0a43fa3ed814a8c8b40ab7f64fca /cores/arduino/PluggableUSB.h | |
parent | 353ef39c23c7c9561fc5357d460c2d9cb3c4f320 (diff) |
implement PUSB modules as linked list
Diffstat (limited to 'cores/arduino/PluggableUSB.h')
-rw-r--r-- | cores/arduino/PluggableUSB.h | 2 |
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 |