20 lines
370 B
C
20 lines
370 B
C
|
/*
|
||
|
* Copyright (c) 2006-2023, RT-Thread Development Team
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*
|
||
|
* Change Logs:
|
||
|
* Date Author Notes
|
||
|
* 2023-03-13 wcx1024979076 the first version
|
||
|
*/
|
||
|
|
||
|
#ifndef __DRV_RTC_H__
|
||
|
#define __DRV_RTC_H__
|
||
|
#include "bflb_rtc.h"
|
||
|
#include <rtdevice.h>
|
||
|
#include <rthw.h>
|
||
|
|
||
|
int rt_hw_rtc_init(void);
|
||
|
|
||
|
#endif /* __DRV_RTC_H__ */
|