Files
player/Project/Src/Drive/Include/rtc.h
2025-06-27 00:32:57 +08:00

22 lines
154 B
C

#ifndef RTC_H__
#define RTC_H__
typedef struct
{
void (*delay_ms)(u32);
} RTC_InitStruct;
int RTC_InitNormal (RTC_InitStruct *init);
#endif