aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/TempDataLogger
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-07-26 07:28:40 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-07-26 07:28:40 +0000
commitcd39c38d5f39d89da989859afd72576b4c1532aa (patch)
treedbc615854fa4b622c20d5aad27d09d52adfbc137 /Projects/TempDataLogger
parent6e2920bc84238077446bdb5bdba25a8ef250d05a (diff)
downloadlufa-cd39c38d5f39d89da989859afd72576b4c1532aa.tar.gz
lufa-cd39c38d5f39d89da989859afd72576b4c1532aa.tar.bz2
lufa-cd39c38d5f39d89da989859afd72576b4c1532aa.zip
Rename reserved members of all structs so that they are uniformly named across all demos/projects/bootloaders.
Added start of the Incomplete TMC demo's command parser code.
Diffstat (limited to 'Projects/TempDataLogger')
-rw-r--r--Projects/TempDataLogger/Lib/DS1307.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Projects/TempDataLogger/Lib/DS1307.h b/Projects/TempDataLogger/Lib/DS1307.h
index d07bff439..c9fe43c3d 100644
--- a/Projects/TempDataLogger/Lib/DS1307.h
+++ b/Projects/TempDataLogger/Lib/DS1307.h
@@ -34,7 +34,7 @@
{
unsigned int Min : 4;
unsigned int TenMin : 3;
- unsigned int _RESERVED : 1;
+ unsigned int Reserved : 1;
} Fields;
uint8_t IntVal;
@@ -47,7 +47,7 @@
unsigned int Hour : 4;
unsigned int TenHour : 2;
unsigned int TwelveHourMode : 1;
- unsigned int _RESERVED : 1;
+ unsigned int Reserved : 1;
} Fields;
uint8_t IntVal;
@@ -62,7 +62,7 @@
{
unsigned int Day : 4;
unsigned int TenDay : 2;
- unsigned int _RESERVED : 2;
+ unsigned int Reserved : 2;
} Fields;
uint8_t IntVal;
@@ -74,7 +74,7 @@
{
unsigned int Month : 4;
unsigned int TenMonth : 1;
- unsigned int _RESERVED : 3;
+ unsigned int Reserved : 3;
} Fields;
uint8_t IntVal;