HP85 GPIB Disk Emulator  1.0
HP85GPIBDiskEmulator
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Functions
rtc.c File Reference

DS1307 RTC Driver AVR8. More...

#include "user_config.h"
#include "time.h"

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...
 

Detailed Description

DS1307 RTC Driver AVR8.

Edit History
  • [1.0] [Mike Gore] Initial revision of file.
Copyright © 2014-2020 Mike Gore, Inc. All rights reserved.

Definition in file rtc.c.

Function Documentation

◆ BCDtoBIN()

uint8_t BCDtoBIN ( uint8_t  data)

Convert two "digit" BCD number to binary.

Parameters
[in]dataBCD number.
  • number >= 0 and <= 99 to BCD
Returns
Binary value.

Definition at line 38 of file rtc.c.

Referenced by rtc_read().

◆ BINtoBCD()

uint8_t BINtoBCD ( uint8_t  data)

RTC BCD conversion functions.

================================================================================

Convert number >= 0 and <= 99 to BCD.

  • BCD format has each hex nibble has a digit 0 .. 9
Parameters
[in]datanumber to convert.
Returns
BCD value
Warning
we assume the number is in range.

Definition at line 27 of file rtc.c.

Referenced by rtc_write().

◆ i2c_rtc_init()

void i2c_rtc_init ( )

RTC I2C initialization code.

Returns
void

Definition at line 123 of file rtc.c.

Referenced by rtc_init().

◆ i2c_rtc_read()

int8_t i2c_rtc_read ( uint8_t  address,
uint8_t  index,
uint8_t *  buf,
uint8_t  len 
)

RTC I2C READ function.

Parameters
[in]addressDS1307 I2C address
[in]indexDS1307 internal address index pointer
[out]bufread buffer
[in]lenbuffer length
Returns
1 = OK, 0 = ERROR

Definition at line 90 of file rtc.c.

Referenced by rtc_read(), and rtc_run().

◆ i2c_rtc_write()

int8_t i2c_rtc_write ( uint8_t  address,
uint8_t  index,
uint8_t *  buf,
uint8_t  len 
)

RTC HAL.

================================================================================

RTC I2C WRITE function

Parameters
[in]addressDS1307 I2C address
[in]indexDS1307 internal address index pointer
[out]bufwrite buffer
[in]lenbuffer length
Returns
1 = OK, 0 = ERROR

DS1307 internal Address Pointer

Definition at line 55 of file rtc.c.

Referenced by rtc_run(), and rtc_write().

◆ rtc_init()

uint8_t rtc_init ( int  force,
time_t  seconds 
)

Initialize DS1307 rtc if not initialied - or if forced.

Parameters
[in]forceforce initialiation flag.
  • If 1 then alwasy force initialiation.
[in]secondsPOSIX EPOCH time in seconds.
Returns
run state 0 = STOP, 1 = RUN
-1 = ERROR

Definition at line 285 of file rtc.c.

Referenced by initialize_clock(), and setdate_r().

◆ rtc_read()

uint8_t rtc_read ( tm_t t)

Read DS1307 RTC into POSIX struct tm * structure.

Parameters
[out]tstruct tm * POSIX time returned.
Returns
1 on sucess.
0 on fail.

Definition at line 189 of file rtc.c.

Referenced by display_clock(), and initialize_clock().

◆ rtc_run()

int rtc_run ( int  run)

Set DS1307 run state.

Parameters
[in]runstate.
  • 1 = run.
  • 0 = stop.
  • -1 = check run state.
Returns
run state 0/1 on success.
-1 on error.

Definition at line 240 of file rtc.c.

Referenced by rtc_init(), and rtc_run_test().

◆ rtc_run_test()

int8_t rtc_run_test ( )

DS1307 run test.

  • display error if read error occurs.
Returns
1 if running.
0 if not running.
-1 ERROR

Definition at line 271 of file rtc.c.

◆ rtc_write()

uint8_t rtc_write ( tm_t t)

RTC functions.

================================================================================

Set DS1307 RTC from POSIX struct tm * structure.

Parameters
[in]tPOSIX struct tm * time to set.
Returns
1 on sucess.
0 on fail.

Definition at line 138 of file rtc.c.

Referenced by rtc_init().