mirror of https://github.com/markqvist/MMDVM.git
Change the TX Delay calculation because of the longer symbol length.
parent
450005d611
commit
d5c2fe9280
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue