diff options
Diffstat (limited to 'src/pcf_clock_driver.c')
-rw-r--r-- | src/pcf_clock_driver.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/pcf_clock_driver.c b/src/pcf_clock_driver.c index c02a934..d4a0b64 100644 --- a/src/pcf_clock_driver.c +++ b/src/pcf_clock_driver.c @@ -1,4 +1,6 @@ -#include <i2c.h> +#include <util/delay.h> +#include <stdio.h> +#include "i2c.h" #define CLOCK_ADDR 0x51 #ifdef FLASH_EEPROM @@ -6,10 +8,5 @@ void flash_clock() { i2c_write_reg(EEPROM_ADDR, 0x00, 0x58); //resets clock i2c_write_reg(CLOCK_ADDR, 0x00, 0x40); //sets to 12 hour time i2c_write_reg(CLOCK_ADDR, 0x01, 0x08); //sets alarm interrupts on - - //recieve time - - } - i2c_write_reg(CLOCK_ADDR, 0x03, 0x01); //free ram byte; says we've set the time #endif |