aboutsummaryrefslogtreecommitdiff
path: root/src/rtc.h
blob: f3f8f9ce924b865bb4215a737b582fcaef075d05 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _LOADED_RTC
#define _LOADED_RTC
#include <stdint.h>

volatile extern uint8_t seconds;
volatile extern uint8_t minutes;
volatile extern uint8_t hours;

void rtc_setup(void);

void rtc_increment(void);

#endif