Add some extra logging and update the copyright message.

This commit is contained in:
Jonathan Naylor 2026-04-02 15:15:25 +01:00
parent c8625f7664
commit 49efab54ba
2 changed files with 3 additions and 2 deletions

View file

@ -76,7 +76,7 @@ static CMMDVMHost* host = nullptr;
const char* HEADER1 = "This software is for use on amateur radio networks only,";
const char* HEADER2 = "it is to be used for educational purposes only. Its use on";
const char* HEADER3 = "commercial networks is strictly prohibited.";
const char* HEADER4 = "Copyright(C) 2015-2025 by Jonathan Naylor, G4KLX and others";
const char* HEADER4 = "Copyright(C) 2015-2026 by Jonathan Naylor, G4KLX and others";
int main(int argc, char** argv)
{
@ -1621,6 +1621,7 @@ bool CMMDVMHost::createModem()
LogInfo(" FM TX Level: %.1f%%", fmTXLevel);
#endif
LogInfo(" TX Frequency: %uHz (%uHz)", txFrequency, txFrequency + txOffset);
LogInfo(" RX Frequency: %uHz (%uHz)", rxFrequency, rxFrequency + rxOffset);
LogInfo(" Use COS as Lockout: %s", useCOSAsLockout ? "yes" : "no");
m_modem = new CModem(m_duplex, rxInvert, txInvert, pttInvert, txDelay, dmrDelay, useCOSAsLockout, trace, debug);

View file

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