HP85 GPIB Disk Emulator
1.0
HP85GPIBDiskEmulator
|
DS1307 RTC Driver AVR8. More...
Go to the source code of this file.
Functions | |
uint8_t | BINtoBCD (uint8_t data) |
RTC BCD conversion functions. More... | |
uint8_t | BCDtoBIN (uint8_t data) |
Convert two "digit" BCD number to binary. More... | |
int8_t | i2c_rtc_write (uint8_t address, uint8_t index, uint8_t *buf, uint8_t len) |
RTC HAL. More... | |
int8_t | i2c_rtc_read (uint8_t address, uint8_t index, uint8_t *buf, uint8_t len) |
RTC I2C READ function. More... | |
void | i2c_rtc_init () |
RTC I2C initialization code. More... | |
uint8_t | rtc_write (tm_t *t) |
RTC functions. More... | |
uint8_t | rtc_read (tm_t *t) |
Read DS1307 RTC into POSIX struct tm * structure. More... | |
int | rtc_run (int run) |
Set DS1307 run state. More... | |
int8_t | rtc_run_test () |
DS1307 run test. More... | |
uint8_t | rtc_init (int force, time_t seconds) |
Initialize DS1307 rtc if not initialied - or if forced. More... | |
DS1307 RTC Driver AVR8.
Definition in file rtc.c.
uint8_t BCDtoBIN | ( | uint8_t | data | ) |
Convert two "digit" BCD number to binary.
[in] | data | BCD number.
|
Definition at line 38 of file rtc.c.
Referenced by rtc_read().
uint8_t BINtoBCD | ( | uint8_t | data | ) |
RTC BCD conversion functions.
================================================================================
Convert number >= 0 and <= 99 to BCD.
[in] | data | number to convert. |
Definition at line 27 of file rtc.c.
Referenced by rtc_write().
void i2c_rtc_init | ( | ) |
RTC I2C initialization code.
Definition at line 123 of file rtc.c.
Referenced by rtc_init().
int8_t i2c_rtc_read | ( | uint8_t | address, |
uint8_t | index, | ||
uint8_t * | buf, | ||
uint8_t | len | ||
) |
RTC I2C READ function.
[in] | address | DS1307 I2C address |
[in] | index | DS1307 internal address index pointer |
[out] | buf | read buffer |
[in] | len | buffer length |
Definition at line 90 of file rtc.c.
Referenced by rtc_read(), and rtc_run().
int8_t i2c_rtc_write | ( | uint8_t | address, |
uint8_t | index, | ||
uint8_t * | buf, | ||
uint8_t | len | ||
) |
RTC HAL.
================================================================================
RTC I2C WRITE function
[in] | address | DS1307 I2C address |
[in] | index | DS1307 internal address index pointer |
[out] | buf | write buffer |
[in] | len | buffer length |
DS1307 internal Address Pointer
Definition at line 55 of file rtc.c.
Referenced by rtc_run(), and rtc_write().
uint8_t rtc_init | ( | int | force, |
time_t | seconds | ||
) |
Initialize DS1307 rtc if not initialied - or if forced.
[in] | force | force initialiation flag.
|
[in] | seconds | POSIX EPOCH time in seconds. |
Definition at line 285 of file rtc.c.
Referenced by initialize_clock(), and setdate_r().
uint8_t rtc_read | ( | tm_t * | t | ) |
Read DS1307 RTC into POSIX struct tm * structure.
[out] | t | struct tm * POSIX time returned. |
Definition at line 189 of file rtc.c.
Referenced by display_clock(), and initialize_clock().
int rtc_run | ( | int | run | ) |
Set DS1307 run state.
[in] | run | state.
|
Definition at line 240 of file rtc.c.
Referenced by rtc_init(), and rtc_run_test().
int8_t rtc_run_test | ( | ) |
uint8_t rtc_write | ( | tm_t * | t | ) |
RTC functions.
================================================================================
Set DS1307 RTC from POSIX struct tm * structure.
[in] | t | POSIX struct tm * time to set. |
Definition at line 138 of file rtc.c.
Referenced by rtc_init().