*** empty log message ***
[h316.git] / pc-tools / ldc2 / src / hw_constants.hh
... / ...
CommitLineData
1#ifndef HW_CONSTANTS_H
2#define HW_CONSTANTS_H
3
4/* Block start delimiter */
5#define BLOCK_START_DELIMITER 0x81 //0201 (SOM:Start of Message)
6
7#define MINIMUM_DATA_BLOCK_WORDSIZE 1
8
9/* Block end delimiters */
10#define EOB_LENGTH 2
11#define BLOCK_END_DELIMITER_1 0223 // XOFF 0x93
12#define BLOCK_END_DELIMITER_2 0xFF
13
14/* End of Tape sequence
15 * If EOT_LENGTH is set to 2, EOT_1 becomes insignificant and so on
16 */
17#define EOT_LENGTH 3
18#define EOT_SEQ_1 0x83
19#define EOT_SEQ_2 0x93
20#define EOT_SEQ_3 0xff
21
22#endif