Files
player/Project/Src/Drive/Include/rtc.h

15 lines
172 B
C
Raw Normal View History

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