From d5c2fe92800695d6f77b77489d7ba8eb0e5e172d Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Mon, 12 Feb 2018 19:23:21 +0000 Subject: [PATCH] Change the TX Delay calculation because of the longer symbol length. --- NXDNTX.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NXDNTX.cpp b/NXDNTX.cpp index 23ed5d4..495a46f 100644 --- a/NXDNTX.cpp +++ b/NXDNTX.cpp @@ -157,7 +157,7 @@ void CNXDNTX::writeByte(uint8_t c) void CNXDNTX::setTXDelay(uint8_t delay) { - m_txDelay = 600U + uint16_t(delay) * 12U; // 500ms + tx delay + m_txDelay = 300U + uint16_t(delay) * 6U; // 500ms + tx delay if (m_txDelay > 1200U) m_txDelay = 1200U;