<?xml version="1.0"?>
<!-- <!DOCTYPE interface [
  <!ELEMENT interface (configuration,communication)>
  <!ELEMENT configuration (port,baudrate,parity,databits,stopbits)>
  <!ELEMENT port (#PCDATA)>
  <!ELEMENT baudrate (#PCDATA)>
  <!ELEMENT parity (#PCDATA)>
  <!ELEMENT databits (#PCDATA)>
  <!ELEMENT stopbits (#PCDATA)>
  <!ELEMENT communication (protocoll)>
  <!ELEMENT protocoll    (command)>
  <!ELEMENT command (#PCDATA)>
]> -->
<interface type="rs232">
    <configuration>
        <port>COM1</port>
		<baudrate>115200</baudrate>
		<parity>none</parity>
		<databits>8</databits>
		<stopbits>1</stopbits>
		<!-- <channels>1</channels> -->
	</configuration>
	<communication>
		<protocoll type="init">
			<!-- Set travel units to millimeters -->
			<command>i</command>
			<!-- Reset travel value -->
			<command>z</command>
			<!-- low level (ex. -55mm) -->
			<command>g-007.300</command>
			<!-- upper travel limit (ex. 80mm) -->
			<command>h000.100</command>
			<!-- Set speed (ex. 500mm/min) -->
			<command>e250.000</command>
			<!-- Set cycles (ex. f0500 = 500 cycles) -->
			<command>f0010</command>
			<!-- Reset cycle counter to zero -->
			<command>t</command>
			<!-- Enter LIM MODE (m manuel, c cicle) -->
			<command>c</command>
			<!-- u up; d down; s stop -->
			<command>d</command>
		</protocoll>
		<protocoll type="request">
			<!-- Set travel units to millimeters -->
			<command>x</command>
		</protocoll>
		<protocoll type="shutdown">
			<!-- Stop Messure -->
			<command>s</command>
		</protocoll>
	</communication>
</interface>