Open
tklink
opened this issue 5 years ago
•
0 comments
The web pages speak about frequency range from 10 kHz to 150 MHz, but the software artificially limits the lower frequency to 1 MHz, see gui.ino line 298.
int i = enc_read();
if (i < 0 && centerFreq > 1000000l) { // <-- HERE
// and so on
}