blob: 3e527934b8323f7e49ba88de411c4d3b96be2c31 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef MELVIX_RTC_H
#define MELVIX_RTC_H
#include <stdint.h>
u8 second;
u8 minute;
u8 hour;
u8 day;
u8 month;
unsigned int year;
void read_rtc();
void rtc_print();
#endif
|