RS232CCorrespondents.mesa
Copyright © 1985 by Xerox Corporation. All rights reserved.
LastEdited: August 4, 1980 12:52 PM By: Victor Schwartz
Russ Atkinson (RRA) February 2, 1985 2:55:51 pm PST
Beach, February 27, 1985 10:50:50 am PST
This DEFINITIONS contains numerical values of RS232CEnvironment.Correspondent and RS232CEnvironment.AutoRecognitionOutcome. This allows support for additional correspondents and/or additional auto-recognition hardware, without requiring the recompilation of any existing code.
DIRECTORY
RS232CEnvironment USING [AutoRecognitionOutcome, Correspondent];
RS232CCorrespondents: DEFINITIONS =
BEGIN
xerox800: RS232CEnvironment.Correspondent = [0];
xerox850: RS232CEnvironment.Correspondent = [1];
system6: RS232CEnvironment.Correspondent = [2];
cmcII: RS232CEnvironment.Correspondent = [3];
ttyHost: RS232CEnvironment.Correspondent = [4];
oisSystemElement: RS232CEnvironment.Correspondent = [5];
ibm3270Host: RS232CEnvironment.Correspondent = [6];
ibm2770Host: RS232CEnvironment.Correspondent = [7];
ibm6670Host: RS232CEnvironment.Correspondent = [8];
ibm6670: RS232CEnvironment.Correspondent = [9];
xerox860: RS232CEnvironment.Correspondent = [10];
oisSystemElementBSC: RS232CEnvironment.Correspondent = [11];
illegal: RS232CEnvironment.AutoRecognitionOutcome = [0];
failure: RS232CEnvironment.AutoRecognitionOutcome = [1];
asciiByteSync: RS232CEnvironment.AutoRecognitionOutcome = [2];
ebcdicByteSync: RS232CEnvironment.AutoRecognitionOutcome = [3];
bitSync: RS232CEnvironment.AutoRecognitionOutcome = [4];
oisProtocol: RS232CEnvironment.AutoRecognitionOutcome = [5];
END.
CHANGE LOG
Time: January 22, 1980 11:00 AM By: Victor Schwartz Action: Created file
Time: May 30, 1980 2:46 PM By: Victor Schwartz Action: Added ibm3270Host and ibm2770Host.
Time: June 26, 1980 2:01 PM By: Victor Schwartz Action: Added correspondents ibm6670Host and ibm6670, and autoRecognitionOutcome of oisSystemElement.
Time: August 4, 1980 12:54 PM By: Victor Schwartz Action: Added correspondents xerox860 and oisSystemElementBSC.