From 94304b11e7220f060dbc345de5fa1952d0465016 Mon Sep 17 00:00:00 2001 From: Brett Weiland Date: Tue, 27 Sep 2022 16:14:28 -0500 Subject: working on serial syncronization for programming eeprom --- src/pcf_clock_driver.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'src/pcf_clock_driver.c') 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 +#include +#include +#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 -- cgit v1.2.3