projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fixed programming errors in the AVRISP-MKII project when the programming packet is...
[pub/USBasp.git]
/
Projects
/
TempDataLogger
/
Lib
/
DS1307.h
diff --git
a/Projects/TempDataLogger/Lib/DS1307.h
b/Projects/TempDataLogger/Lib/DS1307.h
index
6269bb2
..
5181c3e
100644
(file)
--- a/
Projects/TempDataLogger/Lib/DS1307.h
+++ b/
Projects/TempDataLogger/Lib/DS1307.h
@@
-111,12
+111,11
@@
} DS1307_DateTimeRegs_t;
/* Macros: */
} DS1307_DateTimeRegs_t;
/* Macros: */
- #define DS1307_ADDRESS_READ (0xD0 | TWI_ADDRESS_READ)
- #define DS1307_ADDRESS_WRITE (0xD0 | TWI_ADDRESS_WRITE)
+ #define DS1307_ADDRESS 0xD0
/* Function Prototypes: */
/* Function Prototypes: */
-
void
DS1307_SetTimeDate(const TimeDate_t* NewTimeDate);
-
void
DS1307_GetTimeDate(TimeDate_t* const TimeDate);
+
bool
DS1307_SetTimeDate(const TimeDate_t* NewTimeDate);
+
bool
DS1307_GetTimeDate(TimeDate_t* const TimeDate);
#endif
#endif