Skip to content

Commit

Permalink
UPDATE 409 FREQ
Browse files Browse the repository at this point in the history
  • Loading branch information
losehu authored Jun 26, 2024
1 parent 3d0f48c commit 5f8d2fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frequencies.c
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ int32_t TX_freq_check(const uint32_t Frequency)
return 0;
if (Frequency >= 43000000 && Frequency <= 44000000)
return 0;
for (uint32_t i = 40975000; i <= 40991250; i+=1250)
for (uint32_t i = 40975000; i <= 40998750; i+=1250)
if (Frequency == i)
return 0;
break;
Expand Down Expand Up @@ -244,4 +244,4 @@ int32_t RX_freq_check(const uint32_t Frequency)
return -1;

return 0; // OK frequency
}
}

0 comments on commit 5f8d2fe

Please sign in to comment.