mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-16 00:49:31 +08:00
16 lines
234 B
C
16 lines
234 B
C
/*
|
|
* Copyright (c) 2006-2018, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef __DRV_I2C_H__
|
|
#define __DRV_I2C_H__
|
|
|
|
#include <rtthread.h>
|
|
#include <rtdevice.h>
|
|
|
|
int rt_hw_i2c_init(void);
|
|
|
|
#endif
|