2018-12-05 19:04:47 +08:00
|
|
|
/*
|
2021-03-17 02:26:35 +08:00
|
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
2018-12-05 19:04:47 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
2021-03-17 02:26:35 +08:00
|
|
|
#ifndef __DRV_I2C_H__
|
|
|
|
#define __DRV_I2C_H__
|
|
|
|
|
|
|
|
#include <rtthread.h>
|
|
|
|
#include <rtdevice.h>
|
2018-12-05 19:04:47 +08:00
|
|
|
|
|
|
|
int rt_hw_i2c_init(void);
|
|
|
|
|
|
|
|
#endif
|