i'm using
- Code: Select all
--generic,socket,out,5,127.0.0.1,5501,tcp,acars
basic protocol borrowed from the WIKI (to test)
- Code: Select all
<?xml version="1.0"?>
<PropertyList>
<generic>
<output>
<line_separator>newline</line_separator>
<var_separator>tab</var_separator>
<chunk>
<name>altitude above ground</name>
<node>/position/altitude-agl-ft</node>
<type>float</type>
<format>%03.2f</format>
</chunk>
<chunk>
<name>elevator position</name>
<node>/surface-positions/elevator-pos-norm</node>
<type>float</type>
<format>elevator=%03.2f</format>
</chunk>
<chunk>
<name>altitude autopilot (wip)</name>
<node>/autopilot/locks/altitude</node>
<type>string</type>
<format>%s</format>
</chunk>
</output>
</generic>
</PropertyList>
but keep getting the IO error
- Code: Select all
Parse I/O channel request: generic,socket,out,10,127.0.0.1,5501,tcp,acars
protocol = generic
Reading communication protocol from E:/newFGCVS/data/Protocol/acars.xml
medium = socket
direction = out
hertz = 10
hostname = 127.0.0.1
port = 5501
style = tcp
Error: connect() failed in make_client_socket()
SG_IO_OUT socket creation failed
Error opening channel communication layer.
I/O Channel config failed.
Any Ideas?