Fixed a typo with FCC frequency check.

This commit is contained in:
Dual Tachyon 2023-09-03 01:33:10 +01:00
parent ae4e3cf4dd
commit 13e694ea33

View File

@ -132,7 +132,7 @@ int FREQUENCY_Check(VFO_Info_t *pInfo)
}
Frequency = pInfo->pReverse->Frequency;
if (gSetting_F_LOCK == F_LOCK_FCC) {
if ((Frequency + 14400000) < 399991) {
if ((Frequency - 14400000) < 399991) {
return 0;
}
if (2999990 < (Frequency - 42000000)) {