aboutsummaryrefslogtreecommitdiffstats
path: root/Bootloaders/DFU
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2012-05-05 15:25:27 +0000
committerDean Camera <dean@fourwalledcubicle.com>2012-05-05 15:25:27 +0000
commit46d511c021011d051c7f19ab4129a8591735327a (patch)
treece86d55bcbad409a925df1ea1e9edf325f1e4834 /Bootloaders/DFU
parent04740d680eb5f5bb665e87155e8d88023ef74214 (diff)
downloadlufa-46d511c021011d051c7f19ab4129a8591735327a.tar.gz
lufa-46d511c021011d051c7f19ab4129a8591735327a.tar.bz2
lufa-46d511c021011d051c7f19ab4129a8591735327a.zip
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).
Diffstat (limited to 'Bootloaders/DFU')
-rw-r--r--Bootloaders/DFU/Descriptors.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bootloaders/DFU/Descriptors.c b/Bootloaders/DFU/Descriptors.c
index d55159060..ff33b6b64 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)
}
};