1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-07-25 19:44:12 -04:00

Fix constant to be 32MHz instead of 320MHz. Fixes #2801

This commit is contained in:
Jon Beniston
2026-07-19 17:09:30 +01:00
parent 50fee6f643
commit ad5ca070e8
+1 -1
View File
@@ -673,7 +673,7 @@ void MapGUI::kiwiSDRUpdated(const QList<KiwiSDRList::KiwiSDR>& sdrs)
QString band = "HF";
if (sdr.m_highFrequency > 300000000) {
band = "UHF";
} else if (sdr.m_highFrequency > 320000000) { // Technically 30MHz, but many HF Kiwis list up to 32MHz
} else if (sdr.m_highFrequency > 32000000) { // Technically 30MHz, but many HF Kiwis list up to 32MHz
band = "VHF";
}
QString label = QString("Kiwi %1").arg(band);