Initial commit: CCU621_M firmware project with BLE debug link support.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-07-08 17:28:36 +08:00
commit 9ceb218f80
1597 changed files with 724159 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
#ifndef _RTC_H_
#define _RTC_H_
#include "gd32h7xx.h"
#include "publicdata/type.h"
/* 对外接口函数声明 */
void v_rtc_init(void);
/* app_rtc 兼容接口(对业务层使用 Comm_Time) */
void GetCurrentTime(Comm_Time *curTime);
void v_rtc_set_time(Comm_Time *curTime);
unsigned int xDate2Seconds(Comm_Time *time);
void xSeconds2Date(unsigned long seconds, Comm_Time *time);
U8_T u8_ocpp_timestamp_to_tm(Comm_Time *ctTime, const char *time_str, U8_T time_type);
void v_adjust_time_with_timezone(Comm_Time *ctTime, int hour_offset, int min_offset);
void test_rtc(void);
#endif