From c1bb4c825e0a8680269283dea8bb309dbad728ac Mon Sep 17 00:00:00 2001 From: Jonathan Naylor Date: Wed, 11 Nov 2020 11:47:46 +0000 Subject: [PATCH] Change M17 enable bit position. --- SerialModem.cpp | 2 +- Version.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/SerialModem.cpp b/SerialModem.cpp index 9b893c8..add57ff 100644 --- a/SerialModem.cpp +++ b/SerialModem.cpp @@ -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 diff --git a/Version.h b/Version.h index 5fe7f6f..27d6669 100644 --- a/Version.h +++ b/Version.h @@ -19,6 +19,6 @@ #if !defined(VERSION_H) #define VERSION_H -const char* VERSION = "20201110"; +const char* VERSION = "20201111"; #endif