diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-05-10 20:28:39 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-05-10 20:28:39 +0000 |
commit | 33d9a75b0332ded9cebc1388a800922ebe1c3dbe (patch) | |
tree | bc025f12f689ffe48d45a3a670986377ab917ade /Projects/TempDataLogger/Lib | |
parent | 926a83bbc12cc09e026a51b173007dc7cda16117 (diff) | |
download | lufa-33d9a75b0332ded9cebc1388a800922ebe1c3dbe.tar.gz lufa-33d9a75b0332ded9cebc1388a800922ebe1c3dbe.tar.bz2 lufa-33d9a75b0332ded9cebc1388a800922ebe1c3dbe.zip |
AppConfigHeaders: Update several additional user projects to use configuration header files, rather than makefile defines.
Diffstat (limited to 'Projects/TempDataLogger/Lib')
-rw-r--r-- | Projects/TempDataLogger/Lib/DS1307.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Projects/TempDataLogger/Lib/DS1307.h b/Projects/TempDataLogger/Lib/DS1307.h index 0736d8ea5..0ad0a4d92 100644 --- a/Projects/TempDataLogger/Lib/DS1307.h +++ b/Projects/TempDataLogger/Lib/DS1307.h @@ -12,6 +12,8 @@ #include <avr/io.h> #include <LUFA/Drivers/Peripheral/TWI.h> + + #include "Config/AppConfig.h" /* Type Defines: */ typedef struct @@ -111,6 +113,7 @@ } DS1307_DateTimeRegs_t; /* Macros: */ + /** TWI address of the DS1307 device on the bus. */ #define DS1307_ADDRESS 0xD0 /* Function Prototypes: */ |