support protocol2

This commit is contained in:
2026-07-26 14:57:44 +03:00
parent 6ca18411cf
commit ec4af751cd
27 changed files with 7099 additions and 6108 deletions
+18 -7
View File
@@ -2023,13 +2023,24 @@ void QGLWidebandPanel::setPanGridStatus(bool value, int rx) {
update();
}
void QGLWidebandPanel::sampleRateChanged(QObject *sender, int value) {
Q_UNUSED(sender)
m_sampleRate = value;
update();
}
void QGLWidebandPanel::sampleRateChanged(QObject *sender, int value) {
Q_UNUSED(sender)
if (m_sampleRate == value)
return;
m_sampleRate = value;
m_freqScaleUpdate = true;
m_freqScaleRenew = true;
m_panGridUpdate = true;
m_panGridRenew = true;
m_spectrumUpdate = true;
m_spectrumVertexColorUpdate = true;
m_spectrumColorsChanged = true;
m_widebandPanSpectrumBins.clear();
update();
}
void QGLWidebandPanel::freqScaleUpdate(bool value) {