aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/TemperatureDataLogger/Lib
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-02-15 13:40:53 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-02-15 13:40:53 +0000
commit96a12cd12cb9294ba9a7ec5547af81b9c6575748 (patch)
tree5f1481fd05f27013eec55cf4169d01dccb0408e3 /Projects/TemperatureDataLogger/Lib
parent67cb070810bd3122491fb6c1c1bf921bf89bde31 (diff)
downloadlufa-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')
-rw-r--r--Projects/TemperatureDataLogger/Lib/DS1307.c5
-rw-r--r--Projects/TemperatureDataLogger/Lib/DS1307.h2
2 files changed, 0 insertions, 7 deletions
diff --git a/Projects/TemperatureDataLogger/Lib/DS1307.c b/Projects/TemperatureDataLogger/Lib/DS1307.c
index 37817e97f..64e03df0d 100644
--- a/Projects/TemperatureDataLogger/Lib/DS1307.c
+++ b/Projects/TemperatureDataLogger/Lib/DS1307.c
@@ -7,11 +7,6 @@
#include "DS1307.h"
-void DS1307_Init(void)
-{
- // Nothing to initialize
-}
-
void DS1307_SetDate(uint8_t Day, uint8_t Month, uint8_t Year)
{
#if defined(DUMMY_RTC)
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);