42 lines
786 B
Tcl
Executable File
42 lines
786 B
Tcl
Executable File
#!/usr/bin/env tclsh
|
|
source streamtestlib.tcl
|
|
|
|
# Define records, protocol and startup (text goes to files)
|
|
# The asynPort "device" is connected to a network TCP socket
|
|
# Talk to the socket with send/receive/assure
|
|
# Send commands to the ioc shell with ioccmd
|
|
|
|
set records {
|
|
record (ao, "DZ:slow")
|
|
{
|
|
field (DTYP, "stream")
|
|
field (OUT, "@test.proto slow device")
|
|
}
|
|
record (ao, "DZ:fast")
|
|
{
|
|
field (DTYP, "stream")
|
|
field (OUT, "@test.proto fast device")
|
|
}
|
|
}
|
|
|
|
set protocol {
|
|
Terminator = LF;
|
|
slow { out "slow start"; wait 1000; out "slow finished";}
|
|
fast { out "fast"; }
|
|
}
|
|
|
|
set startup {
|
|
}
|
|
|
|
set debug 0
|
|
|
|
startioc
|
|
|
|
put DZ:slow 1
|
|
put DZ:fast 1
|
|
assure "slow start\n"
|
|
assure "slow finished\n"
|
|
assure "fast\n"
|
|
|
|
finish
|