/* * i2c_slave.h * * Created on: Apr 19, 2024 * Author: NikmaOS-W */ #ifndef I2C_SLAVE_H_ #define I2C_SLAVE_H_ #include "ch32v00x.h" void I2C_Slave_Init(void); void I2C_slave_rcv(I2C_TypeDef * I2Cx,u8 * buf, u8 size); #endif /* I2C_SLAVE_H_ */