Revert "Merge branch 'M17_AX25_FM'"

This reverts commit e1427e3e37, reversing
changes made to bcdba292eb.
This commit is contained in:
Jonathan Naylor
2020-12-15 15:52:27 +00:00
parent e1427e3e37
commit 135fd04e0d
115 changed files with 4808 additions and 9583 deletions

View File

@@ -19,7 +19,9 @@
#include "NullModem.h"
#include "Log.h"
CNullModem::CNullModem()
CNullModem::CNullModem(const std::string& port, bool duplex, bool rxInvert, bool txInvert, bool pttInvert, unsigned int txDelay, unsigned int dmrDelay, bool useCOSAsLockout, bool trace, bool debug) :
CModem(port, duplex,rxInvert, txInvert,pttInvert,txDelay, dmrDelay, useCOSAsLockout, trace, debug),
m_hwType(HWT_MMDVM)
{
}
@@ -27,9 +29,7 @@ CNullModem::~CNullModem()
{
}
bool CNullModem::open()
{
bool CNullModem::open(){
::LogMessage("Opening the MMDVM Null Modem");
return true;
}
}