diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-05-20 15:45:53 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-05-20 15:45:53 +0000 |
commit | 28967ef2e8f32e77031eb645970d2fa1a843e255 (patch) | |
tree | e6720f4355e1f0d70e56c93f67bfe2eb5ef96458 | |
parent | 063474561de084fbdd8c1ddc02fcce5b8abebe3e (diff) | |
download | lufa-28967ef2e8f32e77031eb645970d2fa1a843e255.tar.gz lufa-28967ef2e8f32e77031eb645970d2fa1a843e255.tar.bz2 lufa-28967ef2e8f32e77031eb645970d2fa1a843e255.zip |
Add missing AppConfig.h includes to project Descriptors.h files.
-rw-r--r-- | Projects/Benito/Descriptors.h | 2 | ||||
-rw-r--r-- | Projects/Magstripe/Descriptors.h | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/Projects/Benito/Descriptors.h b/Projects/Benito/Descriptors.h index e481793b0..a1df0b487 100644 --- a/Projects/Benito/Descriptors.h +++ b/Projects/Benito/Descriptors.h @@ -41,6 +41,8 @@ #include <LUFA/Drivers/USB/USB.h> + #include "Config/AppConfig.h" + /* Macros: */ /** Endpoint address of the CDC device-to-host notification IN endpoint. */ #define CDC_NOTIFICATION_EPADDR (ENDPOINT_DIR_IN | 2) diff --git a/Projects/Magstripe/Descriptors.h b/Projects/Magstripe/Descriptors.h index f90816a82..a03fa54df 100644 --- a/Projects/Magstripe/Descriptors.h +++ b/Projects/Magstripe/Descriptors.h @@ -42,6 +42,8 @@ #include <LUFA/Drivers/USB/USB.h> + #include "Config/AppConfig.h" + /* Type Defines: */ /** Type define for the device configuration descriptor structure. This must be defined in the * application code, as the configuration descriptor contains several sub-descriptors which |