Garmin GMA 340 Audio Panel but no GPS
-
There is no built-in method to do this, but I can offer you an easy solution to implement in the code yourself. First, you must locate the appropriate behaviors XML file for the aircraft you're interested in, such as "AnalogBaron.XML". Search for for "Gma340Location" and "Kma24Location" within the file.
If you want the GMA340 to always be visible, and never show the KMA24, then replace the two blocks of code you found above with the following:
<Component ID="Gma340Location" Node="Gma340Location"> <UseTemplate Name="ASOBO_GT_Visibility_Code"> <VISIBILITY_CODE> 1 </VISIBILITY_CODE> </UseTemplate> </Component> <Component ID="Kma24Location" Node="Kma24Location"> <UseTemplate Name="ASOBO_GT_Visibility_Code"> <VISIBILITY_CODE> 0 </VISIBILITY_CODE> </UseTemplate> </Component>