
# use '0x' prefix for hexadecimal value

# the demo provides connection to the device server
# in three different ways, so it's necessary to
# set TEST_KIND to one of
# HDLC_SERIAL	for HDLC with a serial connection
# HDLC_TCP for HDLC with a TCP/IP connection
# WRAPPER for 'wrapper protocol data unit (WPDU) with a TCP/IP connection

TEST_KIND = HDLC_SERIAL
#TEST_KIND = HDLC_TCP
#TEST_KIND = WRAPPER

# --------------------------------------
# HDLC tests
	
# serial port
hdlc_COMport = COM1
#hdlc_COMport = /dev/ttyS0
hdlc_COMbaud = 9600

# TCP/IP
#hdlc_TCPhost = 192.168.1.2
hdlc_TCPhost = 127.0.0.1
hdlc_TCPport = 8000

# HDLC parameters
ClientMACAddress = 0x10
ServerAddressSize = 1
ServerUpperMACAddressValue = 1
ServerLowerMACAddressValue = 0

ResponseTimeout = 10000
DiscToNDMTimeout = 1000

# --------------------------------------
# WRAPPER test

#wrapper_TCPhost = 192.168.1.2

#-----------------------------
# local host counter simulator
wrapper_TCPhost = 127.0.0.1
wrapper_TCPport = 2048
# WRAPPER parameters
wrapper_ClientAddress = 0x10
wrapper_ServerAddress = 1

