mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-23 22:47:22 +08:00
0189987d91
华芯微特SWM341芯片的bsp支持包 * 修改dac.c函数名称错误 * delete swm320-lq100 bsp * 修复sdio读写块的地址偏移问题 * add synwit swm341 bsp * 修复gcc下启动文件错误 * 为测试用例添加说明
20 lines
345 B
C
20 lines
345 B
C
/*
|
|
* Copyright (c) 2006-2021, Synwit Technology Co.,Ltd.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2021-07-01 lik first version
|
|
*/
|
|
|
|
#ifndef __DRV_RTC_H__
|
|
#define __DRV_RTC_H__
|
|
|
|
#include "board.h"
|
|
#include "sys/time.h"
|
|
|
|
int swm_rtc_init(void);
|
|
|
|
#endif /* __DRV_RTC_H__ */
|