From 3572b835b51c4da626b582a6d28680daf30c4dbe Mon Sep 17 00:00:00 2001 From: Aurora Date: Mon, 14 Nov 2016 02:11:12 +0100 Subject: [PATCH] Some consoles seem to need 3ms --- source/i2c.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/i2c.c b/source/i2c.c index 848372c..286bbf1 100644 --- a/source/i2c.c +++ b/source/i2c.c @@ -160,7 +160,7 @@ bool i2cWriteRegister(u8 dev_id, u8 reg, u8 data) if(dev_id == I2C_DEV_MCU) { startChrono(); - while(chrono(true) < 2); + while(chrono(true) < 3); } return true;