| 12345678910111213141516171819202122232425 |
- #ifndef __RTC_RUN__
- #define __RTC_RUN__
- #include "board.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- #define RTC_INIT_YEAR (25)
- #define RTC_INIT_MONTH (10)
- #define RTC_INIT_DAY (14)
- #define RTC_INIT_HOUR (14)
- #define RTC_INIT_MIN (17)
- #define RTC_INIT_SEC (0)
- #define RTC_INIT_WEEK (2)
- void get_rtc_run(rtc_run_t **rtc_run);
- void set_rtc_run(rtc_run_t *rtc_run);
- #ifdef __cplusplus
- }
- #endif
- #endif
|