From cc15ac615914705177dea4e6b0f29785ef1d92b2 Mon Sep 17 00:00:00 2001 From: Sjef Verhoeven PE5PVB Date: Sun, 22 Dec 2024 23:22:37 +0100 Subject: [PATCH] Mod on writing data to TEF chip --- src/Tuner_Interface.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Tuner_Interface.cpp b/src/Tuner_Interface.cpp index 2566808..7649950 100644 --- a/src/Tuner_Interface.cpp +++ b/src/Tuner_Interface.cpp @@ -72,6 +72,7 @@ bool Tuner_WriteBuffer(unsigned char *buf, uint16_t len) { Wire.beginTransmission(0x64); for (uint16_t i = 0; i < len; i++) Wire.write(buf[i]); uint8_t r = Wire.endTransmission(); + delayMicroseconds(100); return (r == 0) ? 1 : 0; }