diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2011-09-21 23:40:05 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2011-09-21 23:40:05 +0000 |
| commit | 811229c178a5d25c06fb7a217ac7a041741d9275 (patch) | |
| tree | 8e803d83ebf0e5e7e7d7fda120203a1a6b184540 /LUFA/Drivers | |
| parent | 5196c24076af4a38a99760be313515aa98055759 (diff) | |
Fix missing C++ linkage command in ArchitectureSpecific.h.
Fix missing closing brace in an Endpoint function for the UC3 targets.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@1931 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'LUFA/Drivers')
| -rw-r--r-- | LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h b/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h index eefd9cfc..d38df8b4 100644 --- a/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h +++ b/LUFA/Drivers/USB/Core/UC3/Endpoint_UC3.h @@ -305,7 +305,7 @@ ((uint32_t)Type << AVR32_USBB_EPTYPE_OFFSET) | ((uint32_t)(Direction ? AVR32_USBB_UECFG0_EPDIR_MASK : 0) | ((uint32_t)Banks << AVR32_USBB_EPBK_OFFSET) | - Endpoint_BytesToEPSizeMask(Size))); + Endpoint_BytesToEPSizeMask(Size)))); } /** Indicates the number of bytes currently stored in the current endpoint's selected bank. |
