BeRTOS
|
00001 00043 #ifndef RTC_H 00044 #define RTC_H 00045 00046 #include <cfg/compiler.h> 00047 00048 typedef uint32_t rtc_clock_t; 00049 00050 rtc_clock_t rtc_time(void); 00051 00052 void rtc_setTime(rtc_clock_t date); 00053 00054 int rtc_init(void); 00055 00056 #endif /* RTC_H */