mirror of
https://github.com/travisgoodspeed/goodwatch
synced 2024-11-22 08:09:13 +00:00
16 lines
276 B
C
16 lines
276 B
C
/*! \file rtc.h
|
|
\brief Real Time Clock library.
|
|
*/
|
|
|
|
//! Flash buffer containing the manufacturing time.
|
|
extern unsigned char *romsavetime;
|
|
|
|
//! Configure the Real Time Clock
|
|
void rtc_init();
|
|
|
|
//! Sets the DOW from the calendar date.
|
|
void rtc_setdow();
|
|
|
|
#include "rtcasm.h"
|
|
|