diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-08-02 23:17:47 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-08-02 23:17:47 +0000 |
commit | ab2ae13d81427ddddbd24e8ba6bdfbd2f05ff958 (patch) | |
tree | cd90812b8b97af3bc3b276df0dbe0d91b5941343 | |
parent | 6f4cc344ab47b720651e5bbf7674951c32e210b1 (diff) | |
download | lufa-ab2ae13d81427ddddbd24e8ba6bdfbd2f05ff958.tar.gz lufa-ab2ae13d81427ddddbd24e8ba6bdfbd2f05ff958.tar.bz2 lufa-ab2ae13d81427ddddbd24e8ba6bdfbd2f05ff958.zip |
Fix build error in TestApp demo caused by previous commit.
-rw-r--r-- | Demos/OTG/TestApp/Descriptors.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Demos/OTG/TestApp/Descriptors.c b/Demos/OTG/TestApp/Descriptors.c index 85172bd8d..f8f53cfd7 100644 --- a/Demos/OTG/TestApp/Descriptors.c +++ b/Demos/OTG/TestApp/Descriptors.c @@ -61,7 +61,7 @@ USB_Descriptor_Device_t PROGMEM DeviceDescriptor = .ProductStrIndex = 0x02,
.SerialNumStrIndex = NO_DESCRIPTOR,
- .NumberOfConfigurations = FIXED_NUM_CONFIGURATIONS
+ .NumberOfConfigurations = 1
};
/** Configuration descriptor structure. This descriptor, located in FLASH memory, describes the usage
|