Change M17 enable bit position.

This commit is contained in:
Jonathan Naylor 2020-11-11 11:47:46 +00:00
parent 644351db4f
commit c1bb4c825e
2 changed files with 2 additions and 2 deletions

View file

@ -2031,7 +2031,7 @@ bool CSerialModem::setConfig1()
if (m_pocsagEnabled)
buffer[4U] |= 0x20U;
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 = "20201110";
const char* VERSION = "20201111";
#endif