mirror of
https://github.com/g4klx/MMDVMHost.git
synced 2026-04-04 22:17:38 +00:00
modified: Conf.cpp
modified: Conf.h modified: MMDVMHost.cpp modified: Modem.cpp modified: Modem.h modified: SerialController.cpp modified: SerialController.h
This commit is contained in:
parent
0cf59963dd
commit
40db88d5f8
7 changed files with 86 additions and 12 deletions
4
Modem.h
4
Modem.h
|
|
@ -34,7 +34,7 @@ enum RESP_TYPE_MMDVM {
|
|||
|
||||
class CModem {
|
||||
public:
|
||||
CModem(const std::string& port, bool duplex, bool rxInvert, bool txInvert, bool pttInvert, unsigned int txDelay, unsigned int dmrDelay, bool trace, bool debug);
|
||||
CModem(const std::string& port, const std::string& protocol, unsigned int address, bool duplex, bool rxInvert, bool txInvert, bool pttInvert, unsigned int txDelay, unsigned int dmrDelay, bool trace, bool debug);
|
||||
~CModem();
|
||||
|
||||
void setRFParams(unsigned int rxFrequency, int rxOffset, unsigned int txFrequency, int txOffset, int txDCOffset, int rxDCOffset, float rfLevel, unsigned int pocsagFrequency);
|
||||
|
|
@ -96,6 +96,8 @@ public:
|
|||
|
||||
private:
|
||||
std::string m_port;
|
||||
std::string m_protocol;
|
||||
unsigned int m_address;
|
||||
unsigned int m_dmrColorCode;
|
||||
bool m_ysfLoDev;
|
||||
unsigned int m_ysfTXHang;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue