![ICS 8099 Instruction Manual Download Page 133](http://html1.mh-extra.com/html/ics/8099/8099_instruction-manual_3540995133.webp)
A-41
A4
C.16 eos_8bit_mode
The eos_8bit_mode procedure is used to read/modify the 8-bit EOS compare
mode. If the 8-bit compare mode is TRUE, then EOS compare will be 8-bits.
If 8-bit compare mode is FALSE, then EOS compare will be 7-bits.
struct Eos_8bit_Parms {
unsigned
int
action;
unsigned
int
eos8bit;
};
struct Eos_8bit_Resp {
unsigned
int
error;
unsigned
int
eos8bit;
};
Eos_8bit_Resp eos_8bit_mode (Eos_8bit_Parms) = 16;
The action value determines whether the client wishes to execute a read of the
current setting, or a modification of the current value.
action = 0 = read of current value
action = 1 = modify current value
If the action value is other than 0 or 1, then an error value of 5 is returned.
If the RPC message is of insufficient length to satisfy the required length, an
error value of 1 is returned.
The eos8bit mode must be either 0 or 1. An error of 5 is returned and the current
8-bit EOS compare mode is unchanged if eos8bit is determined to be invalid.
The returned Eos_8bit_Resp structure will always contain the current 8-bit
EOS compare mode, irrespective of the error value.
error Meaning
0
No error
1
Syntax error
5
Parameter error
C.17 auto_eos_mode