📄 rtc.h
字号:
#ifndef __RTC_H__
#define __RTC_H__
#include "config.h"
typedef struct
{
INT16U year;
INT8U month;
INT8U day;
INT8U hour;
INT8U minute;
INT8U second;
INT8U Wday;
}RTC_INFOR;
#ifndef IN_RTC
extern INT8S RTC_Init(void);
extern INT8S RTC_Read(RTC_INFOR* pdat);
extern INT8S RTC_Write(RTC_INFOR* pdat);
#endif
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -