diff options
author | NicoHood <NicoHood@users.noreply.github.com> | 2015-10-07 19:02:40 +0200 |
---|---|---|
committer | NicoHood <NicoHood@users.noreply.github.com> | 2015-10-07 19:02:40 +0200 |
commit | dfe89ddd015f072e279d38354d60e4882c15bdb0 (patch) | |
tree | a00dea9638a58afd0d47226d018f29b51cc7218f /libraries/HID/HID.h | |
parent | 4a1921932de509ea64c8521ab610f7bb1160884c (diff) |
[PUSB] Made getDescriptor() and setup() more flexible
Alternatively we can only pass the wIndex to getDescriptor but I suggest to just pass the pointer aka reference of the whole setup.
In guess (havent tested this) that this results in more or less the code size but its a) idential with the other functions and b) we late have more flexibility here.
The Code got a quick SerialKeyboard.ino test
Diffstat (limited to 'libraries/HID/HID.h')
-rw-r--r-- | libraries/HID/HID.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libraries/HID/HID.h b/libraries/HID/HID.h index e54e45e..b282c20 100644 --- a/libraries/HID/HID.h +++ b/libraries/HID/HID.h @@ -80,8 +80,8 @@ public: protected: // Implementation of the PUSBListNode int getInterface(uint8_t* interfaceCount); - int getDescriptor(int8_t type); - bool setup(USBSetup& setup, uint8_t interfaceNum); + int getDescriptor(USBSetup& setup); + bool setup(USBSetup& setup); private: uint8_t epType[1]; |