HP85 GPIB Disk Emulator  1.0
HP85GPIBDiskEmulator
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
rtc.c
Go to the documentation of this file.
1 
13 #include "user_config.h"
14 #include "time.h"
15 
16 
19 
27 uint8_t BINtoBCD(uint8_t data)
28 {
29  return( ( (data/10U) << 4 ) | (data%10U) );
30 }
31 
32 
38 uint8_t BCDtoBIN(uint8_t data)
39 {
40  return ( ( ( (data&0xf0U) >> 4) * 10 ) + (data&0x0fU) );
41 }
42 
43 
44 
47 
55 int8_t i2c_rtc_write(uint8_t address, uint8_t index, uint8_t *buf, uint8_t len)
56 {
57  int8_t retry;
58  int8_t ret = 0;
59  int8_t i;
60  uint8_t reg[DS1307_REG_SIZE+1];
61 
62  if(len < 1 || len > DS1307_REG_SIZE)
63  return(0);
64 
65  reg[0] = index;
66  for(i=0;i<len;++i)
67  reg[i+1] = buf[i];
68 
69  retry = 2;
70  while(retry--)
71  {
72  if ( i2c_fn(address, TW_WRITE, reg, len+1) )
73  {
74  ret = 1;
75  break;
76  }
77  printf("i2c_rtc_write data error\n");
78  ret = 0;
79  }
80  return(ret);
81 }
82 
90 int8_t i2c_rtc_read(uint8_t address, uint8_t index, uint8_t *buf, uint8_t len)
91 {
92  int8_t retry;
93  int8_t ret = 0;
94 
95  if(len < 1 || len > DS1307_REG_SIZE)
96  return(0);
97 
98  retry = 2;
99  while(retry--)
100  {
101  if ( i2c_fn(address, TW_WRITE, (uint8_t *) &index, sizeof(index)) )
102  {
103  ret = 1;
104  break;
105  }
106  printf("i2c_rtc_read address error\n");
107  ret = 0;
108  }
109  if(!ret)
110  return(0);
111 
112  if ( !i2c_fn(address, TW_READ, buf,len) )
113  {
114  printf("i2c_rtc_read data error\n");
115  return(0);
116  }
117  return(1);
118 }
119 
124 {
125  i2c_init(100000);
126 }
127 
128 
131 
138 uint8_t rtc_write(tm_t *t)
139 {
140  uint8_t buf[DS1307_REG_SIZE];
141 
142  buf[0] = BINtoBCD(t->tm_sec) & 0x7f;
143  buf[1] = BINtoBCD(t->tm_min) & 0x7f;
144  buf[2] = BINtoBCD(t->tm_hour) & 0x3f;
145  buf[3] = ((t->tm_wday & 7) + 1) & 0x0f;
146  buf[4] = BINtoBCD(t->tm_mday ) & 0x3f;
147  buf[5] = BINtoBCD(t->tm_mon + 1) & 0x1f;
148  buf[6] = BINtoBCD(t->tm_year - 100) & 0xff; // 2000 = 0
149  buf[7] = 0x93; // 32khz, out square wave
150 
151 #ifdef RTC_DEBUG
152  printf("rtc_write():%d, day:%d,mon:%d,hour:%d,min:%d,sec:%d, wday:%d\n",
153  t->tm_year + 1900,
154  t->tm_mon,
155  t->tm_mday,
156  t->tm_hour,
157  t->tm_min,
158  t->tm_sec,
159  t->tm_wday);
160 #endif
161 
162 #ifdef RTC_DEBUG
163  printf("%4x\n", t);
164  int i;
165  printf("rtc_write buf: ");
166  for(i=0;i<7;++i)
167  printf("%02x ", 0xff & buf[i]);
168  printf("\n");
169 #endif
170 
171 
172  if( !i2c_rtc_write(DS1307, 0, buf, sizeof(buf)) )
173  {
174  printf("rtc_write error\n");
175  return (0);
176  }
177 
178  return(1);
179 }
180 
181 
182 
183 
189 uint8_t rtc_read(tm_t *t)
190 {
191  uint8_t buf[DS1307_REG_SIZE];
192 
193  if( !i2c_rtc_read(DS1307, 0, buf, sizeof(buf)) )
194  {
195  printf("rtc_read error\n");
196  return (0);
197  }
198 
199 #ifdef RTC_DEBUG
200  printf("%4x\n", t);
201  int i;
202  printf("rtc_read buf: ");
203  for(i=0;i<7;++i)
204  printf("%02x ", 0xff & buf[i]);
205  printf("\n");
206 #endif
207 
208  t->tm_sec = BCDtoBIN( buf[0] & 0x7f);
209  t->tm_min = BCDtoBIN( buf[1] & 0x7f);
210  t->tm_hour = BCDtoBIN( buf[2] & 0x3f);
211  t->tm_wday = ( buf[3] & 0x07) - 1;
212  t->tm_mday = BCDtoBIN( buf[4] & 0x3f) ;
213  t->tm_mon= BCDtoBIN( buf[5] & 0x1f) - 1;
214  t->tm_year = BCDtoBIN( buf[6] & 0xff) + 100;
215 
216 #ifdef RTC_DEBUG
217  printf("rtc_read():%d, day:%d,mon:%d,hour:%d,min:%d,sec:%d, wday:%d\n",
218  t->tm_year + 1900,
219  t->tm_mon,
220  t->tm_mday,
221  t->tm_hour,
222  t->tm_min,
223  t->tm_sec,
224  t->tm_wday);
225 #endif
226 
227  return 1;
228 }
229 
230 
231 
240 int rtc_run(int run)
241 {
242  uint8_t reg;
243 
244 
245  if( !i2c_rtc_read(DS1307, 0, (uint8_t *) &reg, sizeof(reg)) )
246  {
247  printf("rtc_run read error\n");
248  return(-1);
249  }
250 
251  if(run == -1)
252  return ((reg & 0x80) ? 0 : 1);
253 
254  reg = ( reg & 0x7f) | (run ? 0 : 0x80);
255 
256  if( !i2c_rtc_write(DS1307, 0, (uint8_t *) &reg, sizeof(reg)) )
257  {
258  printf("rtc_run write error\n");
259  return -1;
260  }
261  return(run);
262 }
263 
271 int8_t rtc_run_test()
272 {
273  return ( rtc_run(-1) );
274 }
275 
276 
285 uint8_t rtc_init (int force, time_t seconds)
286 {
287  int8_t state;
288 
289  tm_t *tmp;
290 
291  i2c_rtc_init();
292 
293  if(!force)
294  {
295  state = rtc_run(-1);
296  if(state < 0)
297  {
298  rtc_ok = 0;
299  return 0;
300  }
301  if(state == 0) // stopped
302  force = 1;
303  }
304 
305  if(force) // INIT
306  {
307  if(rtc_run(0) < 0) // STOP RTC
308  {
309  rtc_ok = 0; // Fail
310  return 0;
311  }
312 
313  tmp = gmtime(&seconds);
314 
315  if(tmp == NULL || !rtc_write(tmp))
316  {
317  printf("rtc_init write epoch failed\n");
318  rtc_ok = 0;
319  return 0;
320  }
321 
322  if(rtc_run(1) < 0) // START RTC
323  {
324  rtc_ok = 0; // Fail
325  return 0;
326  }
327  }
328  rtc_ok = 1;
329  return 1;
330 }
331 
332 
333 
350 
351 #if 0
352 uint32_t tm_to_fat(tm_t *t)
358 {
359  uint32_t fat;
360 /* Pack date and time into a uint32_t variable */
361  fat = ((uint32_t)(t->tm_year - 80) << 25)
362  | (((uint32_t)t->tm_mon+1) << 21)
363  | (((uint32_t)t->tm_mday) << 16)
364  | ((uint32_t)t->tm_hour << 11)
365  | ((uint32_t)t->tm_min << 5)
366  | ((uint32_t)t->tm_sec >> 1);
367  return(fat);
368 }
369 #endif
370 
371 #if 0
372 uint32_t get_fattime (void)
377 {
378  tm_t t;
379 
380 /* Get local time */
381  if(!rtc_read(&t))
382  return(0);
383  return( tm_to_fat(&t) );
384 }
385 #endif
i2c_rtc_init
void i2c_rtc_init()
RTC I2C initialization code.
Definition: rtc.c:123
BINtoBCD
uint8_t BINtoBCD(uint8_t data)
RTC BCD conversion functions.
Definition: rtc.c:27
printf
MEMSPACE int printf(const char *format,...)
tm::tm_min
int tm_min
Definition: time.h:43
tm::tm_wday
int tm_wday
Definition: time.h:48
i2c_init
void i2c_init(uint32_t speed)
I2C initialize Clear all i2c_task_op[] pointers and disables I2C tasks.
Definition: i2c.c:316
gmtime
MEMSPACE tm_t * gmtime(time_t *tp)
Convert epoch GMT time_t *tp into POSIX static tm_t *t.
Definition: time.c:471
rtc_write
uint8_t rtc_write(tm_t *t)
RTC functions.
Definition: rtc.c:138
i2c_rtc_write
int8_t i2c_rtc_write(uint8_t address, uint8_t index, uint8_t *buf, uint8_t len)
RTC HAL.
Definition: rtc.c:55
tm::tm_sec
int tm_sec
Definition: time.h:42
tm::tm_mon
int tm_mon
Definition: time.h:46
tm::tm_mday
int tm_mday
Definition: time.h:45
tm::tm_hour
int tm_hour
Definition: time.h:44
i2c_rtc_read
int8_t i2c_rtc_read(uint8_t address, uint8_t index, uint8_t *buf, uint8_t len)
RTC I2C READ function.
Definition: rtc.c:90
NULL
#define NULL
Definition: user_config.h:85
get_fattime
DWORD get_fattime(void)
Read time and convert to FAT32 time.
Definition: fatfs_sup.c:129
time.h
Common Linux/POSIX time functions.
rtc_ok
int rtc_ok
Definition: rtc.h:18
DS1307
#define DS1307
Definition: rtc.h:20
user_config.h
Master Include for FatFs, RTC, Timers AVR8 - Part of HP85 disk emulator.
i2c_fn
uint8_t i2c_fn(uint8_t address, uint8_t mode, uint8_t *buf, uint8_t len)
I2C setup new OP but do not run it yet.
Definition: i2c.c:407
BCDtoBIN
uint8_t BCDtoBIN(uint8_t data)
Convert two "digit" BCD number to binary.
Definition: rtc.c:38
rtc_init
uint8_t rtc_init(int force, time_t seconds)
Initialize DS1307 rtc if not initialied - or if forced.
Definition: rtc.c:285
rtc_run_test
int8_t rtc_run_test()
DS1307 run test.
Definition: rtc.c:271
rtc_run
int rtc_run(int run)
Set DS1307 run state.
Definition: rtc.c:240
rtc_read
uint8_t rtc_read(tm_t *t)
Read DS1307 RTC into POSIX struct tm * structure.
Definition: rtc.c:189
tm
POSIX struct tm.
Definition: time.h:40
tm::tm_year
int tm_year
Definition: time.h:47
time_t
uint32_t time_t
type of EPOCH result.
Definition: time.h:34
DS1307_REG_SIZE
#define DS1307_REG_SIZE
Definition: rtc.h:21
tm_to_fat
MEMSPACE uint32_t tm_to_fat(tm_t *t)
FAT time structer reference.
Definition: fatfs_sup.c:110