1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-08-14 15:33:34 -04:00

DOA2: removed useless scope modes

This commit is contained in:
f4exb
2022-05-27 16:49:32 +02:00
parent 4e373478e7
commit 0e08a35d49
5 changed files with 14 additions and 331 deletions
+2 -2
View File
@@ -33,7 +33,7 @@ DOA2Settings::DOA2Settings() :
void DOA2Settings::resetToDefaults()
{
m_correlationType = CorrelationAdd;
m_correlationType = CorrelationFFT;
m_rgbColor = QColor(250, 120, 120).rgb();
m_title = "DOA 2 sources";
m_log2Decim = 0;
@@ -98,7 +98,7 @@ bool DOA2Settings::deserialize(const QByteArray& data)
d.readS32(2, &tmp, 0);
m_correlationType = (CorrelationType) tmp;
d.readU32(3, &m_rgbColor);
d.readString(4, &m_title, "Interpolator");
d.readString(4, &m_title, "DOA 2 sources");
d.readU32(5, &utmp, 0);
m_log2Decim = utmp > 6 ? 6 : utmp;
d.readU32(6, &m_filterChainHash, 0);