diff options
author | Cristian Maglie <c.maglie@arduino.cc> | 2015-10-12 12:14:07 +0200 |
---|---|---|
committer | Cristian Maglie <c.maglie@arduino.cc> | 2015-10-12 12:14:07 +0200 |
commit | 2e755384f50eee83bcf0c850978b1387f185a2be (patch) | |
tree | c04fe2465acef63e7baf7c84e4721737f7483fb9 /cores/arduino/PluggableUSB.h | |
parent | f720c8cacf91877bcd33d11fe660cf0dcaf0a4d8 (diff) |
[PUSB] Renamed PUSBListNode to PluggableUSBModule
Diffstat (limited to 'cores/arduino/PluggableUSB.h')
-rw-r--r-- | cores/arduino/PluggableUSB.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cores/arduino/PluggableUSB.h b/cores/arduino/PluggableUSB.h index 1f3057a..3df9bff 100644 --- a/cores/arduino/PluggableUSB.h +++ b/cores/arduino/PluggableUSB.h @@ -25,9 +25,9 @@ #if defined(USBCON) -class PUSBListNode { +class PluggableUSBModule { public: - PUSBListNode(uint8_t numEps, uint8_t numIfs, uint8_t *epType) : + PluggableUSBModule(uint8_t numEps, uint8_t numIfs, uint8_t *epType) : numEndpoints(numEps), numInterfaces(numIfs), endpointType(epType) { } @@ -43,7 +43,7 @@ protected: const uint8_t numInterfaces; const uint8_t *endpointType; - PUSBListNode *next = NULL; + PluggableUSBModule *next = NULL; friend class PluggableUSB_; }; @@ -51,7 +51,7 @@ protected: class PluggableUSB_ { public: PluggableUSB_(); - bool plug(PUSBListNode *node); + bool plug(PluggableUSBModule *node); int getInterface(uint8_t* interfaceCount); int getDescriptor(USBSetup& setup); bool setup(USBSetup& setup); @@ -59,7 +59,7 @@ public: private: uint8_t lastIf; uint8_t lastEp; - PUSBListNode* rootNode; + PluggableUSBModule* rootNode; }; // Replacement for global singleton. |