#ifndef RTC_H__ #define RTC_H__ #include "stdint.h" typedef struct { void (*delay_ms)(uint32_t); } RTC_InitStruct; int RTC_InitNormal(RTC_InitStruct *init); #endif