summaryrefslogtreecommitdiff
path: root/apps/plugins/rockboy/rtc.h
blob: 2665cd81c3b40ac705fb2277942da263f324d640 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25


#ifndef __RTC_H__
#define __RTC_H__


struct rtc
{
	int batt;
	int sel;
	int latch;
	int d, h, m, s, t;
	int stop, carry;
	byte regs[8];
};

extern struct rtc rtc;

void rtc_latch(byte b);
void rtc_write(byte b);
void rtc_tick(void);
void rtc_save_internal(int fd);
void rtc_load_internal(int fd);
	
#endif