1 /* 2 * Copyright (c) 2006-2023, RT-Thread Development Team 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 * 6 * Email: opensource_embedded@phytium.com.cn 7 * 8 * Change Logs: 9 * Date Author Notes 10 * 2023-10-18 zhangyan first version 11 * 12 */ 13 #ifndef __DRV_I2C_H__ 14 #define __DRV_I2C_H__ 15 16 #include <rtdevice.h> 17 18 #ifdef __cplusplus 19 extern "C" 20 { 21 #endif 22 23 int rt_hw_i2c_init(void); 24 25 #ifdef __cplusplus 26 } 27 #endif 28 29 #endif /* __DRV_CAN_H__ */ 30