diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-05-15 19:51:41 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-05-15 19:51:41 +0000 |
commit | cb9e7392c5f9f1c51710df1b4bbe1aa11168576f (patch) | |
tree | 7eb25f770640f2dceb5873b8a63604a645aa2547 /Demos/Device/LowLevel/AudioInput | |
parent | e9e6730d4999bea6e0eaefc2fce062ef090388b8 (diff) | |
download | lufa-cb9e7392c5f9f1c51710df1b4bbe1aa11168576f.tar.gz lufa-cb9e7392c5f9f1c51710df1b4bbe1aa11168576f.tar.bz2 lufa-cb9e7392c5f9f1c51710df1b4bbe1aa11168576f.zip |
AppConfigHeaders: Make sure that in applications using an AppConfig.h configuration file, all application headers include the configuration file.
Diffstat (limited to 'Demos/Device/LowLevel/AudioInput')
-rw-r--r-- | Demos/Device/LowLevel/AudioInput/AudioInput.h | 1 | ||||
-rw-r--r-- | Demos/Device/LowLevel/AudioInput/Descriptors.h | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Demos/Device/LowLevel/AudioInput/AudioInput.h b/Demos/Device/LowLevel/AudioInput/AudioInput.h index 0539e0694..f534e8198 100644 --- a/Demos/Device/LowLevel/AudioInput/AudioInput.h +++ b/Demos/Device/LowLevel/AudioInput/AudioInput.h @@ -45,7 +45,6 @@ #include "Descriptors.h" #include "Config/AppConfig.h" - #include <LUFA/Version.h> #include <LUFA/Drivers/USB/USB.h> #include <LUFA/Drivers/Board/LEDs.h> #include <LUFA/Drivers/Board/Buttons.h> diff --git a/Demos/Device/LowLevel/AudioInput/Descriptors.h b/Demos/Device/LowLevel/AudioInput/Descriptors.h index 4680294c9..7c419a2f7 100644 --- a/Demos/Device/LowLevel/AudioInput/Descriptors.h +++ b/Demos/Device/LowLevel/AudioInput/Descriptors.h @@ -41,6 +41,8 @@ #include <avr/pgmspace.h> + #include "Config/AppConfig.h" + /* Macros: */ /** Endpoint address of the Audio isochronous streaming data IN endpoint. */ #define AUDIO_STREAM_EPADDR (ENDPOINT_DIR_IN | 1) |