dashboard
repositories
filestore
activity
search
login
伍家志
/
SZV103_FM33A0xxEV_SiZhu
forked from
SZV10X_Software/SZV103_FM33A0xxEV_SiZhu
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
1.Fixed communication failure between MCU and wireless module 2.Fix the wro...
wujiazhi
2024-06-11
65062d0d5b21f838aa0043a15ce54cfab8d72c43
[~wujiazhi/SZV103_FM33A0xxEV_SiZhu.git]
/
HARDWARE
/
RTC
/
RTC.h
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef _RTC_H_
#define _RTC_H_
#include "define_all.h"
extern __IO RTC_TimeDateTypeDef calendar_g;
void RTC_Init(void);
ErrorStatus_STM32 Get_Sys_Rtc_Time(__IO RTC_TimeDateTypeDef * pOutput_timedata);
ErrorStatus_STM32 Set_Sys_Rtc_Time(uint8_t year,uint8_t month,uint8_t day,uint8_t hour,uint8_t min,uint8_t sec,uint8_t week);
#endif