aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/XPLAINBridge
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2012-05-15 19:51:41 +0000
committerDean Camera <dean@fourwalledcubicle.com>2012-05-15 19:51:41 +0000
commitcb9e7392c5f9f1c51710df1b4bbe1aa11168576f (patch)
tree7eb25f770640f2dceb5873b8a63604a645aa2547 /Projects/XPLAINBridge
parente9e6730d4999bea6e0eaefc2fce062ef090388b8 (diff)
downloadlufa-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 'Projects/XPLAINBridge')
-rw-r--r--Projects/XPLAINBridge/AVRISPDescriptors.h2
-rw-r--r--Projects/XPLAINBridge/Lib/SoftUART.h3
-rw-r--r--Projects/XPLAINBridge/USARTDescriptors.h2
-rw-r--r--Projects/XPLAINBridge/XPLAINBridge.h1
4 files changed, 6 insertions, 2 deletions
diff --git a/Projects/XPLAINBridge/AVRISPDescriptors.h b/Projects/XPLAINBridge/AVRISPDescriptors.h
index c0eeedf70..b3541c82f 100644
--- a/Projects/XPLAINBridge/AVRISPDescriptors.h
+++ b/Projects/XPLAINBridge/AVRISPDescriptors.h
@@ -41,6 +41,8 @@
#include <LUFA/Drivers/USB/USB.h>
+ #include "Config/AppConfig.h"
+
/* Macros: */
#if !defined(LIBUSB_DRIVER_COMPAT) || defined(__DOXYGEN__)
/** Endpoint address of the AVRISP data OUT endpoint. */
diff --git a/Projects/XPLAINBridge/Lib/SoftUART.h b/Projects/XPLAINBridge/Lib/SoftUART.h
index c30ad651e..e2492ce77 100644
--- a/Projects/XPLAINBridge/Lib/SoftUART.h
+++ b/Projects/XPLAINBridge/Lib/SoftUART.h
@@ -44,7 +44,8 @@
#include <stdbool.h>
#include "../XPLAINBridge.h"
-
+ #include "Config/AppConfig.h"
+
/* Macros: */
#define SRX PD0
#define SRXPIN PIND
diff --git a/Projects/XPLAINBridge/USARTDescriptors.h b/Projects/XPLAINBridge/USARTDescriptors.h
index 4bb771be9..cc8db29c9 100644
--- a/Projects/XPLAINBridge/USARTDescriptors.h
+++ b/Projects/XPLAINBridge/USARTDescriptors.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/XPLAINBridge/XPLAINBridge.h b/Projects/XPLAINBridge/XPLAINBridge.h
index 7bba40fef..688ac7bd6 100644
--- a/Projects/XPLAINBridge/XPLAINBridge.h
+++ b/Projects/XPLAINBridge/XPLAINBridge.h
@@ -50,7 +50,6 @@
#include "Lib/SoftUART.h"
#include "Config/AppConfig.h"
- #include <LUFA/Version.h>
#include <LUFA/Drivers/Board/LEDs.h>
#include <LUFA/Drivers/Misc/RingBuffer.h>
#include <LUFA/Drivers/USB/USB.h>