Move the M17 enable bit.

This commit is contained in:
Jonathan Naylor 2020-11-11 11:43:05 +00:00
parent 93f3d6addc
commit b1ed5b63dd
2 changed files with 2 additions and 4 deletions

View File

@ -1689,10 +1689,8 @@ bool CModem::setConfig()
buffer[4U] |= 0x10U;
if (m_pocsagEnabled)
buffer[4U] |= 0x20U;
if (m_fmEnabled && m_duplex)
buffer[4U] |= 0x40U;
if (m_m17Enabled)
buffer[4U] |= 0x80U;
buffer[4U] |= 0x40U;
buffer[5U] = m_txDelay / 10U; // In 10ms units

View File

@ -19,6 +19,6 @@
#if !defined(VERSION_H)
#define VERSION_H
const char* VERSION = "20201101";
const char* VERSION = "20201111";
#endif