Correct radios for the MB-339A.

Cherry picked from e208df16b2ed9ea50e93b16d2eb8b8f4ffb22e82

Co-Authored-By: Dan Albert <danalbert@google.com>
This commit is contained in:
Raffson 2022-11-26 16:43:47 +01:00
parent 23becb49b2
commit 11a3c49464
No known key found for this signature in database
GPG Key ID: B0402B2C9B764D99
2 changed files with 51 additions and 8 deletions

View File

@ -258,15 +258,48 @@ RADIOS: List[Radio] = [
),
# MB-339A
Radio(
"AN/ARC-150(V)2",
(RadioRange(MHz(225), MHz(400), kHz(25), Modulation.AM),),
"AN/ARC-150(V) 2",
(
RadioRange(
MHz(225),
MHz(400),
MHz(1),
Modulation.AM,
frozenset((MHz(243),)),
),
),
),
Radio(
"SRT-651/N",
(
RadioRange(MHz(30), MHz(88), kHz(25), Modulation.AM),
RadioRange(MHz(118), MHz(174), kHz(25), Modulation.AM),
RadioRange(MHz(225), MHz(400), kHz(25), Modulation.AM),
RadioRange(
MHz(30),
MHz(88),
MHz(1),
Modulation.FM,
frozenset((MHz(40, 500),)),
),
RadioRange(
MHz(108),
MHz(156),
MHz(1),
Modulation.AM,
frozenset((MHz(121, 500),)),
),
RadioRange(
MHz(156),
MHz(174),
MHz(1),
Modulation.FM,
frozenset((MHz(156, 800),)),
),
RadioRange(
MHz(225),
MHz(400),
MHz(1),
Modulation.AM, # Actually AM/FM, but we can't represent that.
frozenset((MHz(243),)),
),
),
),
]

View File

@ -13,7 +13,17 @@ role: Light Attack
gunfighter: true
variants:
MB-339A: {}
kneeboard_units: "metric"
radios:
intra_flight: AN/ARC-150(V)2
inter_flight: SRT-651/N
intra_flight: SRT-651/N
inter_flight: AN/ARC-150(V) 2
channels:
# The common allocator is sufficient for Liberation's purposes. There are
# more than 20 channels available on COMM2 (manual says 100, ME says 30,
# presumably only 30 can be truly *pre* set, and the other 70 can be set in
# the cockpit). We never need that many though, so no sense customizing
# further.
type: common
# COMM1 us UHF only. COMM2 is V/UHF. We prefer allocating intra-flight on
# VHF because it's less contested, so intra-flight goes to COMM2.
intra_flight_radio_index: 2
inter_flight_radio_index: 1