21 lines
407 B
C
21 lines
407 B
C
/*
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2018-03-15 Liuguang the first version.
|
|
* 2019-07-19 Magicoe The first version for LPC55S6x
|
|
*/
|
|
|
|
#ifndef __DRV_RTC_H__
|
|
#define __DRV_RTC_H__
|
|
|
|
#include <rtthread.h>
|
|
#include <rtdevice.h>
|
|
|
|
extern int rt_hw_i2c_init(void);
|
|
|
|
#endif
|