TTYPortEnvironment.mesa
Copyright (C) 1980, 1985, 1986 by Xerox Corporation. All rights reserved.
Tim Diebert: November 16, 1985 6:28:36 pm PST
Bill Jackson (bj) July 31, 1986 0:17:57 am PDT
Defines basic, hopefully unchanging TYPEs
required by BOTH the TTY Port channel (TTYPort)
and device face (TTYPortFace),
thus preventing interdependencies.
TTYPortEnvironment: CEDAR DEFINITIONS ~ {
CharacterLength: TYPE = {
lengthIs5bits,
lengthIs6bits,
lengthIs7bits,
lengthIs8bits
};
LineSpeed: TYPE = {
bps50,
bps75,
bps110,
bps134p5,
bps150,
bps300,
bps600,
bps1200,
bps1800,
bps2000,
bps2400,
bps3600,
bps4800,
bps7200,
bps9600,
bps19200
};
Parity: TYPE = {
none,
odd,
even
};
StopBits: TYPE = {none,
one,
oneAndHalf,
two
};
}...