2025-06-27 00:32:57 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef RTC_H__
|
|
|
|
|
#define RTC_H__
|
|
|
|
|
|
2025-10-18 13:58:40 +08:00
|
|
|
#include "stdint.h"
|
2025-06-27 00:32:57 +08:00
|
|
|
|
2025-10-18 13:58:40 +08:00
|
|
|
typedef struct {
|
|
|
|
|
void (*delay_ms)(uint32_t);
|
2025-06-27 00:32:57 +08:00
|
|
|
} RTC_InitStruct;
|
|
|
|
|
|
2025-10-18 13:58:40 +08:00
|
|
|
int RTC_InitNormal(RTC_InitStruct *init);
|
2025-06-27 00:32:57 +08:00
|
|
|
|
|
|
|
|
#endif
|