blob: 54d9c9af507d156b989dda681be864ca302760a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include "types.h"
namespace RTC {
void initialize();
time_t now();
time_t boot_time();
void read_registers(unsigned& year, unsigned& month, unsigned& day, unsigned& hour, unsigned& minute, unsigned& second);
}
|