Change the TX Delay calculation because of the longer symbol length.

nxdn
Jonathan Naylor 2018-02-12 19:23:21 +00:00
parent 450005d611
commit d5c2fe9280
1 changed files with 1 additions and 1 deletions

View File

@ -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;