17 lines
217 B
C
17 lines
217 B
C
|
/*
|
||
|
* Copyright (c) 2021 hpmicro
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-3-Clause
|
||
|
*
|
||
|
*/
|
||
|
#ifndef DRV_RTC_H
|
||
|
#define DRV_RTC_H
|
||
|
|
||
|
#include <rtthread.h>
|
||
|
#include <rtdevice.h>
|
||
|
|
||
|
|
||
|
int rt_hw_rtc_init(void);
|
||
|
|
||
|
|
||
|
#endif /* DRV_RTC_H */
|