You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Unfortunately I'm unable to create PR, but this update will resolve the issue: (frequencies.c)
case F_LOCK_GMRS_FRS_MURS:
// https://forums.radioreference.com/threads/the-great-unofficial-radioreference-frs-gmrs-murs-fact-sheet.275370/
if (Frequency >= 46255000 && Frequency <= 46272500 ||
Frequency >= 46755000 && Frequency <= 46772500) // FRS/GMRS
return 0;
if (Frequency == 15182000 ||
Frequency == 15188000 ||
Frequency == 15194000 ||
Frequency == 15457000 ||
Frequency == 15460000) // MURS
return 0;
break;
RE: frequencies.c
Missing GMRS Repeater (+5) frequencies in frequencies.c , case F_LOCK_GMRS_FRS_MURS:
if (Frequency >= 46255000 && Frequency <= 46272500) // GMRS ONLY
return 0;
The issue is that the Xmit frequencies for repeaters on 15R(467.550) and 22R(467.725) are not allowed. The rest are overlapped / covered by "FRS Only"
if (Frequency >= 46756250 && Frequency <= 46771250) // FRS ONLY
return 0;
GMRS repeater frequencies
Ch. Xmit Receive GMRS Repeater Channel Description
15R 467.550 462.550 1
16R 467.575 462.575 2
17R 467.600 462.600 3
18R 467.625 462.625 4
19R 467.650 462.650 5
20R 467.675 462.675 6
21R 467.700 462.700 7
22R 467.725 462.725 8
The text was updated successfully, but these errors were encountered: