Skip to content

Commit

Permalink
Fix issue #180
Browse files Browse the repository at this point in the history
  • Loading branch information
armel committed Jul 10, 2024
1 parent 1e50334 commit ab62ef0
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions frequencies.c
Original file line number Diff line number Diff line change
Expand Up @@ -230,11 +230,8 @@ int32_t TX_freq_check(const uint32_t Frequency)

case F_LOCK_GMRS_FRS_MURS:
// https://forums.radioreference.com/threads/the-great-unofficial-radioreference-frs-gmrs-murs-fact-sheet.275370/
if (Frequency >= 46256250 && Frequency <= 46271250) // FRS/GMRS
return 0;
if (Frequency >= 46756250 && Frequency <= 46771250) // FRS ONLY
return 0;
if (Frequency >= 46255000 && Frequency <= 46272500) // GMRS ONLY
if ((Frequency >= 46255000 && Frequency <= 46272500) ||
(Frequency >= 46755000 && Frequency <= 46772500)) // FRS/GMRS
return 0;
if (Frequency == 15182000 ||
Frequency == 15188000 ||
Expand Down

0 comments on commit ab62ef0

Please sign in to comment.