aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/CodeTemplates
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2013-02-26 16:51:46 +0000
committerDean Camera <dean@fourwalledcubicle.com>2013-02-26 16:51:46 +0000
commit95fd3bf0fe44a76047f1598d993e523db9b1139f (patch)
tree3266d35777c4e528ddf769d7c4773e6658526278 /LUFA/CodeTemplates
parentcfa48f5987ee00f1ef44959cedc6e5248f2bdfb9 (diff)
downloadlufa-95fd3bf0fe44a76047f1598d993e523db9b1139f.tar.gz
lufa-95fd3bf0fe44a76047f1598d993e523db9b1139f.tar.bz2
lufa-95fd3bf0fe44a76047f1598d993e523db9b1139f.zip
Fix incorrect memory space usage on the Device Descriptor in the device mode project template.
Diffstat (limited to 'LUFA/CodeTemplates')
-rw-r--r--LUFA/CodeTemplates/DeviceTemplate/Descriptors.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/LUFA/CodeTemplates/DeviceTemplate/Descriptors.c b/LUFA/CodeTemplates/DeviceTemplate/Descriptors.c
index a3aacdee5..b21b81624 100644
--- a/LUFA/CodeTemplates/DeviceTemplate/Descriptors.c
+++ b/LUFA/CodeTemplates/DeviceTemplate/Descriptors.c
@@ -42,7 +42,7 @@
* and the number of device configurations. The descriptor is read out by the
* USB host when the enumeration process begins.
*/
-const USB_Descriptor_Device_t PROGMEM DeviceDescriptor =
+const USB_Descriptor_Device_t DeviceDescriptor =
{
.Header = {.Size = sizeof(USB_Descriptor_Device_t), .Type = DTYPE_Device},