1 /* 2 * Copyright (c) 2006-2021, RT-Thread Development Team 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7 #ifndef __DRV_I2C_H__ 8 #define __DRV_I2C_H__ 9 10 #include <rtthread.h> 11 #include <rtdevice.h> 12 13 int rt_hw_i2c_init(void); 14 15 #endif 16