remove overloading of frequency function, now using frequency_float for subkhz frequency settings

This commit is contained in:
morgan
2018-10-29 18:31:37 -07:00
parent 373c584ae9
commit 220bd8aa28
4 changed files with 5 additions and 5 deletions

View File

@@ -1343,7 +1343,7 @@ bool HamShield::frequency(uint32_t freq_khz) {
return false;
}
bool HamShield::frequency(float freq_khz) {
bool HamShield::frequency_float(float freq_khz) {
if((freq_khz >= 134000) && (freq_khz <= 174000)) {
setTxBand2m();

View File

@@ -245,7 +245,7 @@ class HamShield {
void safeMode();
bool frequency(uint32_t freq_khz);
bool frequency(float freq_khz);
bool frequency_float(float freq_khz);
uint32_t getFrequency();
float getFrequency_float();