diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-07-16 08:15:27 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-07-16 08:15:27 +0000 |
commit | 37f8a84f35dadf27a6f8997b675238269f854b45 (patch) | |
tree | f8c89a44d38f127643ed59add4a8e7c2558e2345 /Demos/Host/LowLevel/KeyboardHostWithParser/ConfigDescriptor.h | |
parent | f85a53a31b00190ad726f509ad275079fc6eb994 (diff) | |
download | lufa-37f8a84f35dadf27a6f8997b675238269f854b45.tar.gz lufa-37f8a84f35dadf27a6f8997b675238269f854b45.tar.bz2 lufa-37f8a84f35dadf27a6f8997b675238269f854b45.zip |
Added new TOTAL_NUM_CONFIGURATIONS option, removed USE_SINGLE_DEVICE_CONFIGURATION compile time option (but silently convert it to USE_SINGLE_DEVICE_CONFIGURATION internally for compatibility).
Added new USE_FLASH_DESCRIPTORS compile time option. By default, descriptors can now lie in mixed memory spaces (specified by a new parameter to the CALLBACK_USB_GetDescriptor() function) unless one of the USE_*_DESCRIPTORS compile time option is specified.
Diffstat (limited to 'Demos/Host/LowLevel/KeyboardHostWithParser/ConfigDescriptor.h')
-rw-r--r-- | Demos/Host/LowLevel/KeyboardHostWithParser/ConfigDescriptor.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Demos/Host/LowLevel/KeyboardHostWithParser/ConfigDescriptor.h b/Demos/Host/LowLevel/KeyboardHostWithParser/ConfigDescriptor.h index 338adc93b..f27b383bb 100644 --- a/Demos/Host/LowLevel/KeyboardHostWithParser/ConfigDescriptor.h +++ b/Demos/Host/LowLevel/KeyboardHostWithParser/ConfigDescriptor.h @@ -58,6 +58,7 @@ #define DTYPE_Report 0x22
/* Enums: */
+ /** Enum for the possible return codes of the ProcessConfigurationDescriptor() function. */
enum KeyboardHostWithParser_GetConfigDescriptorDataCodes_t
{
SuccessfulConfigRead = 0, /**< Configuration Descriptor was processed successfully */
|