You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
259 B
C

/*
* 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_ */