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 /Bootloaders | |
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 'Bootloaders')
-rw-r--r-- | Bootloaders/CDC/BootloaderAPI.h | 2 | ||||
-rw-r--r-- | Bootloaders/CDC/Descriptors.h | 2 | ||||
-rw-r--r-- | Bootloaders/DFU/BootloaderAPI.h | 2 | ||||
-rw-r--r-- | Bootloaders/DFU/Descriptors.h | 2 |
4 files changed, 8 insertions, 0 deletions
diff --git a/Bootloaders/CDC/BootloaderAPI.h b/Bootloaders/CDC/BootloaderAPI.h index bd7218421..d47c2efc7 100644 --- a/Bootloaders/CDC/BootloaderAPI.h +++ b/Bootloaders/CDC/BootloaderAPI.h @@ -43,6 +43,8 @@ #include <LUFA/Common/Common.h> + #include "Config/AppConfig.h" + /* Function Prototypes: */ void BootloaderAPI_ErasePage(const uint32_t Address); void BootloaderAPI_WritePage(const uint32_t Address); diff --git a/Bootloaders/CDC/Descriptors.h b/Bootloaders/CDC/Descriptors.h index 0010fc69b..6eec9d370 100644 --- a/Bootloaders/CDC/Descriptors.h +++ b/Bootloaders/CDC/Descriptors.h @@ -39,6 +39,8 @@ /* Includes: */ #include <LUFA/Drivers/USB/USB.h> + #include "Config/AppConfig.h" + /* Macros: */ #if defined(__AVR_AT90USB1287__) #define AVR_SIGNATURE_1 0x1E diff --git a/Bootloaders/DFU/BootloaderAPI.h b/Bootloaders/DFU/BootloaderAPI.h index bd7218421..8d0404979 100644 --- a/Bootloaders/DFU/BootloaderAPI.h +++ b/Bootloaders/DFU/BootloaderAPI.h @@ -43,6 +43,8 @@ #include <LUFA/Common/Common.h> + #include "Config/AppConfig.h" + /* Function Prototypes: */ void BootloaderAPI_ErasePage(const uint32_t Address); void BootloaderAPI_WritePage(const uint32_t Address); diff --git a/Bootloaders/DFU/Descriptors.h b/Bootloaders/DFU/Descriptors.h index ce9cc9379..e1ad51a80 100644 --- a/Bootloaders/DFU/Descriptors.h +++ b/Bootloaders/DFU/Descriptors.h @@ -39,6 +39,8 @@ /* Includes: */ #include <LUFA/Drivers/USB/USB.h> + #include "Config/AppConfig.h" + /* Macros: */ /** Descriptor type value for a DFU class functional descriptor. */ #define DTYPE_DFUFunctional 0x21 |