39 lines
815 B
Protocol Buffer
39 lines
815 B
Protocol Buffer
# CR and LF are control characters, respectively coded 0x0D (13 decimal) and 0x0A (10 decimal)
|
|
Terminator = CR;
|
|
inTerminator = CR;
|
|
MaxInput = 30;
|
|
#MaxInput = 20;
|
|
ExtraInput = Ignore;
|
|
|
|
# Values in millisecond
|
|
LockTimeout = 500;
|
|
# Affects first out command in a protocol.
|
|
# If other records currently use the device, how many milliseconds to wait for
|
|
# exclusive access to the device before giving up?
|
|
|
|
# Protocol for the Inficon BAG302-S
|
|
|
|
#ReadTimeout = 1500;
|
|
|
|
ReplyTimeout = 300;
|
|
|
|
#PollPeriod = $ReplyTimeout;
|
|
#Integer. Affects first in command in I/O Intr mode (see chapter Record Processing).
|
|
PollPeriod = 200;
|
|
|
|
#out *03 7.97E-07
|
|
|
|
# Using redirection to read 2 records, mantissa and exponent
|
|
#-Pressure
|
|
readIonGauge1{
|
|
out "#01RD";
|
|
in "*01 %E";
|
|
}
|
|
|
|
readIonGauge3{
|
|
out "#03RD";
|
|
in "*03 %E";
|
|
}
|
|
|
|
|