diff options
author | Martino Facchin <m.facchin@arduino.cc> | 2015-06-08 17:34:59 +0200 |
---|---|---|
committer | Cristian Maglie <c.maglie@arduino.cc> | 2015-07-16 13:12:15 +0200 |
commit | 8fbc30bd8afab6e70dfa4624250a5a6b676de553 (patch) | |
tree | 3fa15b2af07eb11fadfedf6922088fa44dcd56bc /cores/arduino/PluggableUSB.h | |
parent | b38d7f07f0ee8e5e9bdc912966dcee4ae3a8b3e7 (diff) |
add numInterfaces field to PUSBCallbacks
Diffstat (limited to 'cores/arduino/PluggableUSB.h')
-rw-r--r-- | cores/arduino/PluggableUSB.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cores/arduino/PluggableUSB.h b/cores/arduino/PluggableUSB.h index e066d37..8e7f5d7 100644 --- a/cores/arduino/PluggableUSB.h +++ b/cores/arduino/PluggableUSB.h @@ -31,6 +31,7 @@ typedef struct int8_t (*getInterface)(u8* interfaceNum); int8_t (*getDescriptor)(int8_t t); int8_t numEndpoints; + int8_t numInterfaces; u8 endpointType[]; } PUSBCallbacks; |