diff options
Diffstat (limited to 'cores/arduino')
-rw-r--r-- | cores/arduino/PluggableUSB.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/cores/arduino/PluggableUSB.h b/cores/arduino/PluggableUSB.h index c08bc99..0f776c0 100644 --- a/cores/arduino/PluggableUSB.h +++ b/cores/arduino/PluggableUSB.h @@ -27,10 +27,9 @@ class PUSBListNode { public: - PUSBListNode() { } - int8_t numEndpoints; - int8_t numInterfaces; - uint8_t *endpointType; + PUSBListNode(int8_t numEps, int8_t numIfs, uint8_t *epType) : + numEndpoints(numEps), numInterfaces(numIfs), endpointType(epType) + { } inline uint8_t interface() const { return pluggedInterface; } inline int8_t endpoint() const { return pluggedEndpoint; } @@ -43,6 +42,10 @@ protected: uint8_t pluggedInterface; int8_t pluggedEndpoint; + const int8_t numEndpoints; + const int8_t numInterfaces; + const uint8_t *endpointType; + public: PUSBListNode *next = NULL; |