From f5dfa7960b6fb7b5f21fb4da9e5f9978fae7ffcb Mon Sep 17 00:00:00 2001 From: Alessandro Mauri Date: Fri, 24 Apr 2026 01:45:12 +0200 Subject: [PATCH] removed allucinated functions --- fw/lib_i2c.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/fw/lib_i2c.h b/fw/lib_i2c.h index 9f542f8..4b4aa16 100644 --- a/fw/lib_i2c.h +++ b/fw/lib_i2c.h @@ -17,8 +17,6 @@ void i2c_init(I2C_TypeDef* I2Cx, u32 PCLK, u32 i2cSpeed_Hz); u8 i2c_start(I2C_TypeDef* I2Cx, u8 i2cAddress, u8 isRead); void i2c_stop(I2C_TypeDef* I2Cx); -u8 i2c_write(I2C_TypeDef* I2Cx, u8 i2cAddress, u8 reg, u8 data); -u8 i2c_read(I2C_TypeDef* I2Cx, u8 i2cAddress, u8 reg, u8* buffer, u8 len); void i2c_scan(I2C_TypeDef* I2Cx, void (*onPingFound)(u8 address)); //! ####################################