Keep the newer GCC happy.
5 * Daniel O'Connor <darius@dons.net.au>. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
16 * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED. IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 #define IIC_FAILARB -2
32 #define IIC_NOREPLY -4
33 #define IIC_UNKNOWN -99
35 #define DS1307_ADR 0xd0 // DS1307's TWI address
53 uint8_t sec10 : 3; // Seconds (0-59)
54 uint8_t ch : 1; // Clock enable (1 = off)
57 uint8_t min10 : 3; // Minutes (0-59)
61 uint8_t hour10 : 1; // Hours
62 uint8_t pmam : 1; // AM/PM => 1 = PM or extra bit for hour10
63 uint8_t s1224 : 1; // 1 = 12 hour mode
66 uint8_t dow : 3; // Day of the week (1-7)
70 uint8_t day10 : 2; // Day of the month (1-31)
75 uint8_t pad4 : 3; // Month (1-12)
78 uint8_t year10 : 4; // Year (0-99)
80 uint8_t rs : 2; // Rate select
82 uint8_t sqwe : 1; // Square wave enable
84 uint8_t out : 1; // Output control enable
88 int ds1307_init(void);
89 int iic_read(uint8_t *data, uint8_t len, uint8_t adr, uint8_t sla);
90 int iic_write(uint8_t *data, uint8_t len, uint8_t adr, uint8_t sla);
91 int ds1307_gettod(ds1307raw_t *time);
92 int ds1307_settod(char *date);
93 void ds1307_printtime(char *leader, char *trailer);