ds1307.h 385 B

123456789101112131415161718192021
  1. #ifndef __DS1307__
  2. #define __DS1307__
  3. typedef struct DateTime
  4. {
  5. unsigned char second;
  6. unsigned char minute;
  7. unsigned char hour;
  8. unsigned char weekday;
  9. unsigned char monthday;
  10. unsigned char month;
  11. unsigned char year;
  12. } DateTime;
  13. void ds1307_init(unsigned char address);
  14. inline unsigned char bcd2dec(unsigned char val);
  15. DateTime *ds1307_get(void);
  16. #endif