22 lines
366 B
C
22 lines
366 B
C
/*
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2018-03-24 LaiYiKeTang the first version
|
|
* 2019-04-22 tyustli add imxrt series support
|
|
*
|
|
*/
|
|
|
|
#ifndef DRVI2C_H__
|
|
#define DRVI2C_H__
|
|
|
|
#include <rtdevice.h>
|
|
|
|
int rt_hw_i2c_init(void);
|
|
|
|
#endif
|
|
|