diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2012-05-05 15:25:27 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2012-05-05 15:25:27 +0000 |
| commit | 76d9dbdd7848f6889c9ccccf5b3e0ea6ab179f31 (patch) | |
| tree | ce86d55bcbad409a925df1ea1e9edf325f1e4834 /Bootloaders/DFU/Descriptors.c | |
| parent | 20be1f63a26910d3c9db297589fc4f6a139ff3c3 (diff) | |
Fixed incorrect DFU version number reported to the host in the DFU bootloader descriptors. Fixed incorrect version hundredths value encoding in VERSION_BCD() macro (thanks to Georg Glock).
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@2179 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Bootloaders/DFU/Descriptors.c')
| -rw-r--r-- | Bootloaders/DFU/Descriptors.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bootloaders/DFU/Descriptors.c b/Bootloaders/DFU/Descriptors.c index d5515906..ff33b6b6 100644 --- a/Bootloaders/DFU/Descriptors.c +++ b/Bootloaders/DFU/Descriptors.c @@ -111,7 +111,7 @@ const USB_Descriptor_Configuration_t ConfigurationDescriptor = .DetachTimeout = 0x0000, .TransferSize = 0x0C00, - .DFUSpecification = VERSION_BCD(01.01) + .DFUSpecification = VERSION_BCD(01.10) } }; |
