1
0
Fork 0
fgdata/Aircraft/Generic/generic-instrumentation.xml
ehofman 661617a94e Roy Vegard Ovesen:
I've made an encoder and a transponder. The transponder gets C-Mode altitude
information from the encoder. These two might not be very usefull right now,
but I think they might come in handy when the ATC network gets going.
2004-10-26 12:06:13 +00:00

111 lines
No EOL
2.7 KiB
XML

<?xml version="1.0"?>
<!--
**********************************************************************
generic-instrumentation.xml
Generic instrumentation configuration. This file selects the
instrumentation modules that should be available.
You can have several instances of the same instrument type.
The value inside the name tag becomes the node in the property tree.
If two instruments have the same name you must use the number tag
to separate them. They become name[number] in the property tree.
Some instruments have additional configuration tags like static-port
and pitot-port. The static- and pitot-ports (and any other system that
an instrument depend on) have to be configured in the systems
configuration file: generic-systems.xml
The values in this file are the default values. If any configuration
tags are omitted in an aircraft specific version of this configuration
file, these values will be used (they are hardcoded).
**********************************************************************
-->
<PropertyList>
<adf>
<name>adf</name>
<number>0</number>
</adf>
<adf>
<name>adf-radio</name>
<number>0</number>
</adf>
<airspeed-indicator>
<name>airspeed-indicator</name>
<number>0</number>
<pitot-port>/systems/pitot</pitot-port>
<static-port>/systems/static</static-port>
</airspeed-indicator>
<altimeter>
<name>altimeter</name>
<number>0</number>
<static-port>/systems/static</static-port>
</altimeter>
<attitude-indicator>
<name>attitude-indicator</name>
<number>0</number>
<vacuum-system>/systems/vacuum</vacuum-system>
</attitude-indicator>
<clock>
<name>clock</name>
<number>0</number>
</clock>
<dme>
<name>dme</name>
<number>0</number>
</dme>
<encoder>
<name>encoder</name>
<number>0</number>
<static-port>/systems/static</static-port>
</encoder>
<heading-indicator>
<name>heading-indicator</name>
<number>0</number>
<vacuum-system>/systems/vacuum</vacuum-system>
</heading-indicator>
<magnetic-compass>
<name>magnetic-compass</name>
<number>0</number>
</magnetic-compass>
<slip-skid-ball>
<name>slip-skid-ball</name>
<number>0</number>
</slip-skid-ball>
<transponder>
<name>transponder</name>
<number>0</number>
<encoder>/instrumentation/encoder</encoder>
</transponder>
<turn-indicator>
<name>turn-indicator</name>
<number>0</number>
</turn-indicator>
<vertical-speed-indicator>
<name>vertical-speed-indicator</name>
<number>0</number>
<static-port>/systems/static</static-port>
</vertical-speed-indicator>
<gps>
<name>gps</name>
<number>0</number>
</gps>
</PropertyList>