mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-01 21:54:55 -04:00
HackRF: suppression of Rx to Tx link frequency. Synchronization of Tx to Rx device center frequency.
This commit is contained in:
@@ -39,7 +39,6 @@ void HackRFInputSettings::resetToDefaults()
|
||||
m_dcBlock = false;
|
||||
m_iqCorrection = false;
|
||||
m_devSampleRate = 2400000;
|
||||
m_linkTxFrequency = false;
|
||||
m_fileRecordName = "";
|
||||
m_useReverseAPI = false;
|
||||
m_reverseAPIAddress = "127.0.0.1";
|
||||
@@ -62,7 +61,6 @@ QByteArray HackRFInputSettings::serialize() const
|
||||
s.writeBool(10, m_dcBlock);
|
||||
s.writeBool(11, m_iqCorrection);
|
||||
s.writeU64(12, m_devSampleRate);
|
||||
s.writeBool(13, m_linkTxFrequency);
|
||||
s.writeBool(14, m_useReverseAPI);
|
||||
s.writeString(15, m_reverseAPIAddress);
|
||||
s.writeU32(16, m_reverseAPIPort);
|
||||
@@ -98,7 +96,6 @@ bool HackRFInputSettings::deserialize(const QByteArray& data)
|
||||
d.readBool(10, &m_dcBlock, false);
|
||||
d.readBool(11, &m_iqCorrection, false);
|
||||
d.readU64(12, &m_devSampleRate, 2400000U);
|
||||
d.readBool(13, &m_linkTxFrequency, false);
|
||||
d.readBool(14, &m_useReverseAPI, false);
|
||||
d.readString(15, &m_reverseAPIAddress, "127.0.0.1");
|
||||
d.readU32(16, &uintval, 0);
|
||||
|
||||
Reference in New Issue
Block a user