Files
player/Project/Src/Drive/Include/rtc.h
andy 045cff4cc6 整理代码
1.解决一些编译警告
2.发现png因为文件api不支持而不能使用
2025-10-18 13:58:40 +08:00

15 lines
172 B
C

#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