1 /*
2  * Copyright (c) 2021 HPMicro
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  *
6  */
7 #ifndef DRV_RTC_H
8 #define DRV_RTC_H
9 
10 #include <rtthread.h>
11 #include <rtdevice.h>
12 
13 
14 int rt_hw_rtc_init(void);
15 
16 
17 #endif /* DRV_RTC_H */
18