diff options
author | NicoHood <NicoHood@users.noreply.github.com> | 2015-10-07 20:39:50 +0200 |
---|---|---|
committer | NicoHood <NicoHood@users.noreply.github.com> | 2015-10-07 20:39:50 +0200 |
commit | abd6b795c412cf1b2d21338ace3a34f4984add42 (patch) | |
tree | 77f4ac71c452fa3d2c2d1d5e32c768c8d4044f2c /cores | |
parent | c4fb153142502646f2441986cb7be95ca7d964a9 (diff) |
[PUSB] Removed unnecessary endpoint and interface function
Diffstat (limited to 'cores')
-rw-r--r-- | cores/arduino/PluggableUSB.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/cores/arduino/PluggableUSB.h b/cores/arduino/PluggableUSB.h index d12c4c4..1f3057a 100644 --- a/cores/arduino/PluggableUSB.h +++ b/cores/arduino/PluggableUSB.h @@ -31,9 +31,6 @@ public: numEndpoints(numEps), numInterfaces(numIfs), endpointType(epType) { } - inline uint8_t interface() const { return pluggedInterface; } - inline uint8_t endpoint() const { return pluggedEndpoint; } - protected: virtual bool setup(USBSetup& setup) = 0; virtual int getInterface(uint8_t* interfaceCount) = 0; |