Lowered I2C bus speed

This commit is contained in:
Ulysse Cura 2026-02-09 18:57:20 +01:00
parent 2359ff97ae
commit cf61113acd
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@
#define I2C_MASTER_SDA_PIN 16 #define I2C_MASTER_SDA_PIN 16
#define I2C_MASTER_SCL_PIN 17 #define I2C_MASTER_SCL_PIN 17
#define I2C_MASTER_INSTANCE i2c0 #define I2C_MASTER_INSTANCE i2c0
#define I2C_MASTER_BAUD_RATE 300 * 1000 #define I2C_MASTER_BAUD_RATE 200 * 1000
// Init master i2c // Init master i2c
void i2c_master_init(void); void i2c_master_init(void);