aboutsummaryrefslogtreecommitdiffstats
path: root/Projects
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-03-29 13:32:36 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-03-29 13:32:36 +0000
commit9257f4ab8ea8ade1df5b576c114f715302051cc6 (patch)
treed3c30d0fec346836104080345693ac8d1f157cc8 /Projects
parent0557676013f41487701a8951d3dbb4aee3117882 (diff)
downloadlufa-9257f4ab8ea8ade1df5b576c114f715302051cc6.tar.gz
lufa-9257f4ab8ea8ade1df5b576c114f715302051cc6.tar.bz2
lufa-9257f4ab8ea8ade1df5b576c114f715302051cc6.zip
Add briefs for the library core structures.
Diffstat (limited to 'Projects')
-rw-r--r--Projects/TemperatureDataLogger/TempDataLogger.c4
-rw-r--r--Projects/TemperatureDataLogger/makefile2
2 files changed, 1 insertions, 5 deletions
diff --git a/Projects/TemperatureDataLogger/TempDataLogger.c b/Projects/TemperatureDataLogger/TempDataLogger.c
index 955359d45..fbe32cea0 100644
--- a/Projects/TemperatureDataLogger/TempDataLogger.c
+++ b/Projects/TemperatureDataLogger/TempDataLogger.c
@@ -299,10 +299,6 @@ void CALLBACK_HID_Device_ProcessHIDReport(USB_ClassInfo_HID_Device_t* const HIDI
{
Device_Report_t* ReportParams = (Device_Report_t*)ReportData;
- GPIOR0 = ReportParams->Day;
- GPIOR1 = ReportParams->Month;
- GPIOR2 = ReportParams->Year;
-
DS1307_SetDate(ReportParams->Day, ReportParams->Month, ReportParams->Year);
DS1307_SetTime(ReportParams->Hour, ReportParams->Minute, ReportParams->Second);
diff --git a/Projects/TemperatureDataLogger/makefile b/Projects/TemperatureDataLogger/makefile
index f48e155b0..8fd2c2941 100644
--- a/Projects/TemperatureDataLogger/makefile
+++ b/Projects/TemperatureDataLogger/makefile
@@ -193,7 +193,7 @@ CSTANDARD = -std=gnu99
# Place -D or -U options here for C sources
CDEFS = -DF_CPU=$(F_CPU)UL -DF_CLOCK=$(F_CLOCK)UL -DBOARD=BOARD_$(BOARD) $(LUFA_OPTS)
-#CDEFS += -DDUMMY_RTC
+CDEFS += -DDUMMY_RTC
# Place -D or -U options here for ASM sources