mirror of
https://github.com/g4klx/MMDVMHost.git
synced 2026-04-21 06:13:49 +00:00
Add Tx and Rx frequency offsets
Enables specification of independant Tx and Rx offsets in Hz for Tx and Rx frequencies on DVMega and MMDVM_HS hardware. Tx and Rx frequencies no longer have to be offset for frequency errors in ADF7021 devices and dashboards (BM/DMR+) will now display intended frequencies.
This commit is contained in:
parent
348e682610
commit
5e91c1159f
6 changed files with 33 additions and 7 deletions
4
Conf.h
4
Conf.h
|
|
@ -72,6 +72,8 @@ public:
|
|||
bool getModemPTTInvert() const;
|
||||
unsigned int getModemTXDelay() const;
|
||||
unsigned int getModemDMRDelay() const;
|
||||
int getModemTxOffset() const;
|
||||
int getModemRxOffset() const;
|
||||
float getModemRXLevel() const;
|
||||
float getModemCWIdTXLevel() const;
|
||||
float getModemDStarTXLevel() const;
|
||||
|
|
@ -228,6 +230,8 @@ private:
|
|||
bool m_modemPTTInvert;
|
||||
unsigned int m_modemTXDelay;
|
||||
unsigned int m_modemDMRDelay;
|
||||
int m_modemTxOffset;
|
||||
int m_modemRxOffset;
|
||||
float m_modemRXLevel;
|
||||
float m_modemCWIdTXLevel;
|
||||
float m_modemDStarTXLevel;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue