antuinov2.1 icon indicating copy to clipboard operation
antuinov2.1 copied to clipboard

Artificial lower frequency limit at 1 MHz

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
}

Is this lower frequency limit intentional?

tklink avatar Sep 04 '20 16:09 tklink