mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-02-04 03:34:35 +08:00
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 */
|