File indexing completed on 2025-05-11 08:23:46
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014 #ifndef __RTC_DS1307__
0015 #define __RTC_DS1307__
0016
0017 #define DS1307_I2C_ADDRESS (0xD0)
0018
0019 #define DS1307_SECOND (0x00)
0020 #define DS1307_SECOND_HALT (0x80)
0021 #define DS1307_MINUTE (0x01)
0022 #define DS1307_HOUR (0x02)
0023 #define DS1307_HOUR_12 (0x40)
0024 #define DS1307_HOUR_PM (0x20)
0025 #define DS1307_DAY_OF_WEEK (0x03)
0026 #define DS1307_DAY (0x04)
0027 #define DS1307_MONTH (0x05)
0028 #define DS1307_YEAR (0x06)
0029 #define DS1307_CONTROL (0x07)
0030 #define DS1307_CONTROL_OUT (0x80)
0031 #define DS1307_CONTROL_SQWE (0x10)
0032 #define DS1307_CONTROL_RS_1 (0x00)
0033 #define DS1307_CONTROL_RS_4096 (0x01)
0034 #define DS1307_CONTROL_RS_8192 (0x02)
0035 #define DS1307_CONTROL_RS_32768 (0x03)
0036
0037 #define DS1307_NVRAM_START (0x08)
0038 #define DS1307_NVRAM_END (0x3F)
0039 #define DS1307_NVRAM_SIZE (56)
0040
0041 #endif