initial commit

This commit is contained in:
2025-08-05 15:53:44 +08:00
commit 09dc02ae52
553 changed files with 137665 additions and 0 deletions

28
hal/hal_rtc/hal_interface_rtc.h Executable file
View File

@@ -0,0 +1,28 @@
#ifndef __HAL_RTC_H__
#define __HAL_RTC_H__
#include "hal.h"
#ifdef __cplusplus
extern "C"
{
#endif /* __cplusplus */
////////////////////////////////////////////////////////////
//
// 数据类型定义
//
////////////////////////////////////////////////////////////
/*rtc init interface define,should be implement if needed*/
int32_t hal_rtc_init();
/*rtc deinit interface define,should be implement if needed*/
int32_t hal_rtc_deinit();
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* __HAL_RTC_H__ */