forked from UnknownShadow200/RCTTechDepot-Archive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontrolFlags.html
81 lines (80 loc) · 1.71 KB
/
controlFlags.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<HTML>
<HEAD><TITLE>Control Flags</TITLE></HEAD>
<BODY BGCOLOR="#ffffff" BACKGROUND="bkground.jpg">
<H1 ALIGN="Center">Departure Control Flags</H1>
<P>
This byte contains bit flags. The most significant bit will be called "bit
7" and the least significant bit will be called "bit 0".
<TABLE BORDER CELLPADDING="2">
<TR>
<TD>Bit</TD>
<TD>if set...</TD>
</TR>
<TR>
<TD><P ALIGN="Center">7</TD>
<TD>use maximum time</TD>
</TR>
<TR>
<TD><P ALIGN="Center">6</TD>
<TD>use minimum time</TD>
</TR>
<TR>
<TD><P ALIGN="Center">5</TD>
<TD>sync with adjacent station</TD>
</TR>
<TR>
<TD><P ALIGN="Center">
4</TD>
<TD>leave if another train arrives at station</TD>
</TR>
<TR>
<TD><P ALIGN="Center">
3</TD>
<TD>wait for load</TD>
</TR>
</TABLE>
<P>
<P>
Bits 2, 1 and 0 indicate the following loading conditions:
<TABLE BORDER CELLPADDING="2">
<TR>
<TD>bit 2</TD>
<TD>bit 1</TD>
<TD>bit 0</TD>
<TD>wait for...</TD>
</TR>
<TR>
<TD><P ALIGN="Center">0</TD>
<TD><P ALIGN="Center">0</TD>
<TD><P ALIGN="Center">0</TD>
<TD>1/4 load</TD>
</TR>
<TR>
<TD><P ALIGN="Center">0</TD>
<TD><P ALIGN="Center">0</TD>
<TD><P ALIGN="Center">1</TD>
<TD>1/2 load</TD>
</TR>
<TR>
<TD><P ALIGN="Center">0</TD>
<TD><P ALIGN="Center">1</TD>
<TD><P ALIGN="Center">0</TD>
<TD>3/4 load</TD>
</TR>
<TR>
<TD><P ALIGN="Center">0</TD>
<TD><P ALIGN="Center">1</TD>
<TD><P ALIGN="Center">1</TD>
<TD>full load</TD>
</TR>
<TR>
<TD><P ALIGN="Center">1</TD>
<TD><P ALIGN="Center">0</TD>
<TD><P ALIGN="Center">0</TD>
<TD>any load</TD>
</TR>
</TABLE>
<P>
other combinations are not used
<P>
</BODY></HTML>