diff options
author | Martino Facchin <m.facchin@arduino.cc> | 2015-07-01 16:56:14 +0200 |
---|---|---|
committer | Cristian Maglie <c.maglie@arduino.cc> | 2015-07-16 13:13:52 +0200 |
commit | 3cf30dff259cb8d902880934631ef332782f9a12 (patch) | |
tree | 103fc9bfe1c7ae550535d4592063a92621d31d3a /cores/arduino/PluggableUSB.cpp | |
parent | 3d0331b8f6980633789f543947d36a9156455670 (diff) |
rename Setup typedef struct to USBSetup
was really too common
Diffstat (limited to 'cores/arduino/PluggableUSB.cpp')
-rw-r--r-- | cores/arduino/PluggableUSB.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cores/arduino/PluggableUSB.cpp b/cores/arduino/PluggableUSB.cpp index 970c11e..68a6c8a 100644 --- a/cores/arduino/PluggableUSB.cpp +++ b/cores/arduino/PluggableUSB.cpp @@ -58,7 +58,7 @@ int PUSB_GetDescriptor(int8_t t) return ret; } -bool PUSB_Setup(Setup& setup, u8 j) +bool PUSB_Setup(USBSetup& setup, u8 j) { bool ret = false; PUSBListNode* node = rootNode; |