summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/drivers/pcf50606.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/firmware/drivers/pcf50606.c b/firmware/drivers/pcf50606.c
index 4fe04e6..b99b2e9 100644
--- a/firmware/drivers/pcf50606.c
+++ b/firmware/drivers/pcf50606.c
@@ -86,6 +86,7 @@ static int pcf50606_i2c_getack(void)
int ret = 1;
SDA_INPUT; /* And set to input */
+ DELAY;
SCL_HI;
if (SDA)
@@ -96,6 +97,7 @@ static int pcf50606_i2c_getack(void)
SCL_LO;
SDA_HI;
SDA_OUTPUT;
+ DELAY;
return ret;
}