Fix radio data for the A-10Cs.

My earlier tests were not accurate enough. It turns out that yes, DCS
does still do some channel clobbering with these, so fix the radio
selection to account for that.

I also fumbled some copy paste between the A-10Cs so the A-10C II
channel assignment ended up in the wrong section doing nothing...
This commit is contained in:
Dan Albert 2023-03-13 17:07:57 -07:00
parent a73c06223d
commit 2fed84c676
3 changed files with 17 additions and 10 deletions

View File

@ -9,7 +9,7 @@ Saves from 6.x are not compatible with 7.0.
* **[Flight Planning]** Package TOT and composition can be modified after advancing time in Liberation.
* **[Mission Generation]** Units on the front line are now hidden on MFDs.
* **[Mission Generation]** Preset radio channels will now be configured for both A-10C modules.
* **[Mission Generation]** Both A-10C modules now use separate radios for inter- and intra-flight comms (similar to other modern aircraft).
* **[Mission Generation]** The A-10C II now uses separate radios for inter- and intra-flight comms (similar to other modern aircraft).
* **[Modding]** Updated Community A-4E-C mod version support to 2.1.0 release.
* **[Modding]** Add support for VSN F-4B and F-4C mod.

View File

@ -15,9 +15,11 @@ role: Close Air Support/Attack
variants:
A-10C Thunderbolt II (Suite 3): {}
radios:
intra_flight: AN/ARC-186(V) AM
# VHF for intraflight is not accepted anymore by DCS
# (see https://forums.eagle.ru/showthread.php?p=4499738).
intra_flight: AN/ARC-164
inter_flight: AN/ARC-164
channels:
type: common
intra_flight_radio_index: 1
intra_flight_radio_index: 2
inter_flight_radio_index: 2

View File

@ -15,10 +15,15 @@ role: Close Air Support/Attack
variants:
A-10C Thunderbolt II (Suite 7): {}
radios:
type: common
# DCS will clobber channel 1 of the first radio compatible with the flight's
# assigned frequency. Since the A-10C's first two radios are both AN/ARC-210s,
# radio 1 will be compatible regardless of which frequency is assigned, so
# we must use radio 1 for the intra-flight radio.
intra_flight_radio_index: 1
inter_flight_radio_index: 2
# DCS will clobber channel 1 of the AN/ARC-164 with the flight's assigned
# frequency, so we may as well use that one for intra-flight.
#
# This ends up working out nicely anyway, because it's much easier on the
# pilot to have the AN/ARC-210 be the inter-flight radio since that's the one
# with HUD support and the control panel that makes switching channels easier.
intra_flight: AN/ARC-164
inter_flight: AN/ARC-210
channels:
type: common
intra_flight_radio_index: 2
inter_flight_radio_index: 1