diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-02-15 13:40:53 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-02-15 13:40:53 +0000 |
commit | 96a12cd12cb9294ba9a7ec5547af81b9c6575748 (patch) | |
tree | 5f1481fd05f27013eec55cf4169d01dccb0408e3 /Projects/TemperatureDataLogger/Lib/DS1307.h | |
parent | 67cb070810bd3122491fb6c1c1bf921bf89bde31 (diff) | |
download | lufa-96a12cd12cb9294ba9a7ec5547af81b9c6575748.tar.gz lufa-96a12cd12cb9294ba9a7ec5547af81b9c6575748.tar.bz2 lufa-96a12cd12cb9294ba9a7ec5547af81b9c6575748.zip |
Add missing TWI_Init() call to the TemperatureDataLogger project. Make DUMMY_RTC compile time option the default, so that it works correctly on the USBKEY and other Atmel boards out of the box.
Diffstat (limited to 'Projects/TemperatureDataLogger/Lib/DS1307.h')
-rw-r--r-- | Projects/TemperatureDataLogger/Lib/DS1307.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Projects/TemperatureDataLogger/Lib/DS1307.h b/Projects/TemperatureDataLogger/Lib/DS1307.h index 491836079..90b91e3e8 100644 --- a/Projects/TemperatureDataLogger/Lib/DS1307.h +++ b/Projects/TemperatureDataLogger/Lib/DS1307.h @@ -100,8 +100,6 @@ #define DS1307_ADDRESS_WRITE 0b11010000
/* Function Prototypes: */
- void DS1307_Init(void);
-
void DS1307_SetDate(uint8_t Day, uint8_t Month, uint8_t Year);
void DS1307_SetTime(uint8_t Hour, uint8_t Minute, uint8_t Second);
|