mirror of
https://github.com/FlightControl-Master/MOOSE.git
synced 2026-08-18 21:25:58 +00:00
UTILS - exclude 243 MHz and 121.5 MHz
This commit is contained in:
@@ -1933,7 +1933,7 @@ function UTILS.GenerateVHFrequencies()
|
|||||||
705,720,722,730,735,740,745,750,770,795,
|
705,720,722,730,735,740,745,750,770,795,
|
||||||
822,830,862,866,
|
822,830,862,866,
|
||||||
905,907,920,935,942,950,995,
|
905,907,920,935,942,950,995,
|
||||||
1000,1025,1030,1050,1065,1116,1175,1182,1210
|
1000,1025,1030,1050,1065,1116,1175,1182,1210,1215
|
||||||
}
|
}
|
||||||
|
|
||||||
local FreeVHFFrequencies = {}
|
local FreeVHFFrequencies = {}
|
||||||
@@ -2001,7 +2001,9 @@ function UTILS.GenerateUHFrequencies()
|
|||||||
local _start = 220000000
|
local _start = 220000000
|
||||||
|
|
||||||
while _start < 399000000 do
|
while _start < 399000000 do
|
||||||
table.insert(FreeUHFFrequencies, _start)
|
if _start ~= 243000000 then
|
||||||
|
table.insert(FreeUHFFrequencies, _start)
|
||||||
|
end
|
||||||
_start = _start + 500000
|
_start = _start + 500000
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user