From 43094b2222556d35316bed01f8e409c948bc9d88 Mon Sep 17 00:00:00 2001 From: "Ben V. Brown" Date: Thu, 29 Jun 2023 18:52:53 +1000 Subject: [PATCH] Revert to slower software I2C --- source/Core/BSP/Miniware/Software_I2C.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Core/BSP/Miniware/Software_I2C.h b/source/Core/BSP/Miniware/Software_I2C.h index 3b40f517..e3a95a71 100644 --- a/source/Core/BSP/Miniware/Software_I2C.h +++ b/source/Core/BSP/Miniware/Software_I2C.h @@ -33,7 +33,7 @@ #define SOFT_I2C_DELAY() \ { \ - for (int xx = 0; xx < 10; xx++) { \ + for (int xx = 0; xx < 15; xx++) { \ asm("nop"); \ } \ }