TLS2 Serial Interface Manual
TLS2 Serial Interface Manual
TLS2 Serial Interface Manual
for
TLS2
UST Monitoring Systems
through Software Version 1
1.0 INTRODUCTION . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
2.1 RS-232 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
The serial RS-232 interface is used to connect the system to a controlling computer, a display terminal
(CRT), or a printing ter minal. A modem can be connected directly to the system to provide telephone
line access.
NOTE: T he software versions for these systems vary depending on when they were purchased and if
software upgrades have been installed. The version in which each function code first appeared is
indicated in a box next to its description in Section 7.
The RS-232 interface for Port 1 is accessed via a 9-pin D-connector located on the bottom of the
console. The RS-232 interface for Port 2 is accessed via the 5-pin J-9 connector inside the console.
2.1 RS-232
Port 1 is a panel mount, 9-pin female type D-connector, wired in the DCE configur ation. A modem
(DCE) may be connected to the interface using a null cable which reverses the wires for the
transmit/receive signals. A computer or serial printer (DTE) may be connected with a straight-
through cable. Port 1 does not require or activate any hardware handshaking signals unless this option
has been selected in the setup menu. RS-232 signals for Port 1 are wired to the 9-pin female D-
connector as follows:
Port 1 PIN
1 (DCD) Data Car rier Detect
2 (RXD) Data Received by the console
3 (TXD) Data Transmitted from the console
4 (DTR) Data Terminal Ready
5 (GND) Signal Ground
6 (DSR) Data Set Ready
7 (RTS) Request To Send
8 (CTS) Clear To Send
9 (N/C) Not connected
RS-232 signals for Port 2, which does not include any hardware handshaking signals, are wired to the
5-pin internal J-9 connector as follows:
Port 2 PIN
1 (TXD) Data Transmitted from the console
2 (RXD) Data Received by the console
5 (GND) Signal Ground (common return) and Chassis
The EIA RS-232 interface is designed to connect to modems for transmission of data over telephone
lines. It can be used for direct local attachment of terminals if the cable run is no more than 50 feet.
In practice, cable runs longer than 50 feet have perfor med satisfactorily; however , since the RS-232
specification is designed for operation up to 50 feet, direct connect cable runs greater than 50 feet are
not warranted for proper oper ation.
The system receives and sends characters via the RS-232 interface in an ASCII format that is
configured via the system front panel keypads. Selections consist of: 1 start bit; 7 or 8 data bits; odd,
even or no parity; and 1 or 2 stop bits. Communications rate is selectable: 300, 1200, 2400, 4800, or
9600 baud. The system operates in a full duplex mode. Characters are not echoed when received,
and transmitted characters must not be echoed back to the system. Transmit and receive can occur
simultaneously, and commands can be stacked in the system buffer (up to 128 character s).
A security code can be enabled for each port from the front panel setup menus, or by using the
appropriate serial commands. Each por t has its own security code which is enabled and set
independently. When a security code is enabled for a given port, it must be used in any commands
transmitted to that port, in accordance with the format shown below, or else the console will not
respond to the command.
All command and response messages are configured in a format which includes a surrounding
envelope of control characters and a function code and data field message. The control characters are
described in this section, while the function codes and data field messages are described in subsequent
sections.
The system responds to a command message that has the following configuration:
SOH is a fixed Control-A character (ASCII 01), and it indicates the beginning of the message.
The RS-232 security code is an optional six-digit code used to limit external serial access to the system
for security pur poses. It can be set to any unique set of six characters, using either the front panel
setup menus or the external communication interface setup commands. The system will not respond
to a command without the proper security code.
The function code is a six character command code which the system interprets to determine the type
of action to take and response to return. System function codes and response messages are defined in
subsequent sections.
The data field is optional and contains information necessary to perform the selected function (such as
setup information).
If the system receives a command message string containing a function code that it does not recognize,
it will respond with a < SOH> 9999FF1B< ETX> . The "9999" indicates that the system has not
understood the command, while the "FF 1B" is the appropriate checksum for the preceding
< SOH> 9999 string.
There is one command which does not follow the above format. The escape command is performed
by sending an ESC (escape character, ASCII 27), to the system. It can be used to halt a response
message at any time before its completion.
There are two types of r esponse message formats: computer (or packed data format) and display
format. Each format uses a different surrounding envelope of control characters.
The computer format is a str eam of data without any formatting characters; i.e. , car riage retur n, line
feed, spaces, labels, etc. The message format is as follows:
SOH is a fixed Control-A character (ASCII 01), and it indicates the beginning of the message.
The function code is identical to the received command message function code.
The data field contains the response message which is described in subsequent sections.
The "&&" is a fixed tag character which indicates that the checksum immediately follows.
The Checksum is a series of four ASCII-hexadecimal characters which provide a check on the
integrity of all the characters preceding it, including the control characters. The four characters
represent a 16-bit binary count which is the 2' s complemented sum of the 8-bit binary representation
of the message characters after the parity bit (if enabled) has been cleared. Over flows are ignored.
The data integrity check can be done by converting the four checksum characters to the 16-bit binary
number and adding the 8-bit binary representation of the message characters to it. The binary r esult
should be zero.
ETX is a fixed Control-C character (ASCII 03), and it indicates the end of the message.
The display format is intended for display on a CRT or printer. It includes all the necessary
formatting characters such as carriage returns, line feeds, nulls, spaces, labels, etc. The message
format is as follows:
See subsequent sections for a description of the data field response messages.
6.3. 1 NOTES
6.3. 1.1 HHHHHHHH (H = 0-9 or A-F) indicates the 8 " nibble" ASCII-Hexadecimal
representation of a 4-Byte Floating Point number. Many data parameters are transmitted in
this format.
Byte 1 2 3 4
Nibble 1 2 3 4 5 6 7 8
EEE EEEE E represents the 2' s exponent. It is a 2' s complement value biased by 127 (7F
Hex). The exponent can be determined by subtracting 127 from the value of the E field and
raising 2 to the resulting power.
MMM MMMM MMMM MMMM MMMM MMMM r epresents the 23-bit mantissa. Since
the mantissa describes a value which is greater than or equal to 1.0 and less than 2. 0, the
24th bit is always assumed to be equal to 1 and is not transmitted or stored. The value of the
mantissa can be determined by dividing the value of the M field by 8,388, 608 (223) and
adding 1.0.
6.3. 1.3 The complete value of the floating point number can then be determined by multiplying the
exponent by the mantissa and attaching the appropriate positive or negative sign.
6.3. 1.4 By convention, 00 00 00 00 represents the value 0.0 even though it actually converts to
5.8775 x 10 -39.
6.3. 1.5 The eight "nibbles" are transmitted in sequence from 1 thr ough 8 as shown in section
6.3. 1.2.
6.3. 2.1 3F800000 hex = 0011 1111 1000 0000 0000 0000 0000 0000 bin
S = 0 = + (positive)
E = 011 1111 1 bin = 7F hex = 127 dec
M = 000 0000 0000 0000 0000 0000 bin = 0 hex = 0 dec
6.3. 2.2 B8D1B717 hex = 1011 1000 1101 0001 1011 0111 0001 0111 bin
S = 1 = - (negative)
E = 011 1000 1 bin = 71 hex = 113 dec
M = 101 0001 1011 0111 0001 0111 bin = 51 B7 17 hex = 5,355, 287 dec
6.3. 2.3 C2C7FAE1 hex = 1100 0010 1100 0111 1111 1010 1110 0001 bin
S = 1 = - (negative)
E = 100 0010 1 bin = 85 hex = 133 dec
M = 100 0111 1111 1010 1110 0001 bin = 47 FA E1 hex = 4,717, 281 dec
Exponent = 2(133-127) = 64
Mantissa = 1.0 + (4,717, 281/8, 388,608) = 1.56234
Decimal Value = -64 x 1.56234 = -99.99
6.3. 2.4 461C4000 hex = 0100 0110 0001 1100 0100 0000 0000 0000 bin
S = 0 = + (positive)
E = 100 0110 0 bin = 8C hex = 140 dec
M = 001 1100 0100 0000 0000 0000 bin = 1C 40 00 hex = 1,851, 392 dec
The function codes and data fields of the message formats are described in this section.
Most response messages can be requested for either a single device (tank, etc.) or all devices. A "TT"
in the function code signifies single device number 01 through 16. When "TT" is 00, it signifies all
devices.
Typically, response messages include information on the active devices only. That is, those devices
that are connected and working. However, the system can be forced to send data on inactive devices
by using an inactive device number. In this case, if no valid data is available on a device, the message
is filled out with question marks (?) in the place of numbers.
Computer format response messages do not include any formatting characters such as carriage returns,
line feeds, spaces, nulls, labels, etc. Only those characters shown are actually included in the
response message. For convenience, the messages are shown in segments and do not actually include
any line feeds, carriage returns, etc. Also, the notes to the right and between the message lines are
not included in the messages. All number values contained in the response messages retain leading
zeroes.
Display format response messages include the formatting characters shown. All message lines end
with a carriage return, line feed, and six nulls. All response messages start and end with at least one
blank line.
The system function codes and response messages are described in detail in the following sections. A
summary list of all function codes is given at the end of this document.
Command Format:
Display: <SOH>S00100
Computer: <SOH>s00100
<SOH>
S00100
22-05-01 14:51
<ETX>
<SOH>s00100YYMMDDHHmm&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. && - Data Termination Flag
3. CCCC - Message Checksum
Command Format:
Display: <SOH>S00300
Computer: <SOH>s00300
<SOH>
S00300
22-05-01 14:54
<ETX>
<SOH>s00300YYMMDDHHmm&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. && - Data Termination Flag
3. CCCC - Message Checksum
Command Format:
Display: <SOH>S01000
Computer: <SOH>s01000
<SOH>
S01000
22-05-01 14:54
<ETX>
<SOH>s01000YYMMDDHHmm&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. This command ends the current autodial session for this port
and clears any active autodial alarms on the port
3. && - Data Termination Flag
4. CCCC - Message Checksum
Command Format:
Display: <SOH>S052TT
Computer: <SOH>s052TT
<SOH>
S05201
22-05-01 14:55
TANK PRODUCT LABEL
1 REGULAR UNLEADED LEAK TEST START
TEST BY EXTERN INTERFACE
<ETX>
<SOH>s052TTYYMMDDHHmmTTk&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. k - Status Flag - 0 = OFF, 1 = ON
4. && - Data Termination Flag
5. CCCC - Message Checksum
Command Format:
Display: <SOH>S053TT
Computer: <SOH>s053TT
<SOH>
S05301
22-05-01 14:55
TANK PRODUCT LABEL
1 REGULAR UNLEADED LEAK TEST STOP
<ETX>
<SOH>s053TTYYMMDDHHmmTTk&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. k - Status Flag - 0 = OFF, 1 = ON
4. && - Data Termination Flag
5. CCCC - Message Checksum
Command Format:
Display: <SOH>I10100
Computer: <SOH>i10100
Notes:
1. This command will report all active OR unacknowledged alarms
and warnings up to the limit of 25 alarms in display format,
and 150 alarms in computer format
<SOH>
I10100
22-05-01 14:55
<SOH>i10100YYMMDDHHmmAANNTT...
AANNTT&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. AA - Alarm/Warning Category:
00 - All Functions Normal
02 - Tank Alarm
14 - Auto-Dial Fax Alarm
- If AA is 02 and NN is:
03 = Tank High Water Alarm
04 = Tank Overfill Alarm
05 = Tank Low Product Alarm
08 = Tank Invalid Fuel Level Alarm
09 = Tank Probe Out Alarm
11 = Tank Delivery Needed Warning
12 = Tank Maximum Product Alarm
13 = Tank Gross Leak Test Fail Alarm
14 = Tank Periodic Leak Test Fail Alarm
15 = Tank Annual Leak Test Fail Alarm
27 = Tank Cold Temperature Warning
- If AA is 14 and NN is:
02 = Autodial Failed Alarm
4. TT - Tank/Sensor Number
5. && - Data Termination Flag
6. CCCC - Message Checksum
Command Format:
Display: <SOH>I11100
Computer: <SOH>i11100
<SOH>
I11100
22-05-01 14:55
<SOH>i11100YYMMDDHHmmAAccNNTTSSYYMMDDHHmm...
AAccNNTTSSYYMMDDHHmm&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. AA - Alarm/Warning Category:
00 - All Functions Normal
02 - Tank Alarm
14 - Auto-Dial Alarm
3. cc - Sensor Category
00 - Unused
- If AA is 14 and NN is:
02 = Autodial Failed Alarm
5. TT - Tank/Sensor Number
6. SS - Alarm State
01 = Alarm cleared
02 = Alarm occurred
7. YYMMDDHHmm - Date/Time Alarm state occurred
8. && - Data Termination Flag
9. CCCC - Message Checksum
Command Format:
Display: <SOH>I11200
Computer: <SOH>i11200
<SOH>
I11200
22-05-01 14:56
<SOH>i11200YYMMDDHHmmAAccNNTTSSYYMMDDHHmm...
AAccNNTTSSYYMMDDHHmm&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. AA - Alarm/Warning Category:
See explanation for "AA" in Function i11100
3. cc - Sensor Category
See explanation for "cc" in Function i11100
4. NN - Alarm Type Number:
See explanation for "NN" in Function i11100
5. TT - Tank/Sensor Number
6. SS - Alarm State
01 = Alarm cleared
02 = Alarm occurred
7. YYMMDDHHmm - Date/Time Alarm state occurred
8. && - Data Termination Flag
9. CCCC - Message Checksum
Command Format:
Display: <SOH>I11300
Computer: <SOH>i11300
Notes:
1. This command will report ALL active alarms and warnings
regardless of their acknowledgement state. If there are
more than can be contained in the non-priority and priority
history storage areas, they will be reported here without
time and date stamps
<SOH>
I11300
22-05-01 14:56
<SOH>i11300YYMMDDHHmma..ab..bc..cd..dAAccNNTTYYMMDDHHmm...
AAccNNTTYYMMDDHHmm&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. a..a - Station Header 1: 20 ASCII characters
3. b..b - Station Header 2: 20 ASCII characters
4. c..c - Station Header 3: 20 ASCII characters
5. d..d - Station Header 4: 20 ASCII characters
6. AA - Alarm/Warning Category:
See explanation for "AA" in Function i11100
7. cc - Sensor Category
See explanation for "cc" in Function i11100
8. NN - Alarm Type Number:
See explanation for "NN" in Function i11100
9. TT - Tank/Sensor Number
10. YYMMDDHHmm - Alarm Date and Time
11. && - Data Termination Flag
12. CCCC - Message Checksum
Command Format:
Display: <SOH>I11400
Computer: <SOH>i11400
<SOH>
I11400
22-05-01 14:56
<SOH>i11400YYMMDDHHmma..ab..bc..cd..dAAccNNTTSSYYMMDDHHmm...
AAccNNTTSSYYMMDDHHmm&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. a..a - Station Header 1: 20 ASCII characters
3. b..b - Station Header 2: 20 ASCII characters
4. c..c - Station Header 3: 20 ASCII characters
5. d..d - Station Header 4: 20 ASCII characters
6. AA - Alarm/Warning Category:
See explanation for "AA" in Function i11100
7. cc - Sensor Category:
See explanation for "cc" in Function i11100
8. NN - Alarm Type Number:
See explanation for "NN" in Function i11100
9. TT - Tank/Sensor Number
10. SS - Alarm State
01 = Alarm cleared
02 = Alarm occurred
11. YYMMDDHHmm - Clear Alarm Date and Time
12. && - Data Termination Flag
13. CCCC - Message Checksum
Command Format:
Display: <SOH>I11700
Computer: <SOH>i11700
<SOH>
I11700
22-05-01 14:56
<SOH>iii700YYMMDDHHmmAAccNNTTSSYYMMDDHHmmaaaa...
AAccNNTTSSYYMMDDHHmmaaaa&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. AA - Alarm/Warning Category
See explanation for "AA" in Function i11100
3. cc - Sensor Category
See explanation for "cc" in Function i11100
4. NN - Alarm Type Number
See explanation for "NN" in Function i11100
5. TT - Tank/ Sensor Number
6. SS - Alarm State
01 – Alarm cleared
02 – Alarm occurred
7. YYMMDDHHmm - Date and Time first alarm occurred
8. aaaa - number of times alarm occurred (hex)
9. && - Data Termination Flag
10. CCCC - Message Checksum
Command Format:
Display: <SOH>I11800
Computer: <SOH>i11800
<SOH>
I11800
22-05-01 14:56
<SOH>i11800YYMMDDHHmmAAccNNTTSSYYMMDDHHmmaaaa...
AAccNNTTSSYYMMDDHHmmaaaa&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. AA - Alarm/Warning Category
See explanation for "AA" in Function i11100
3. cc - Sensor Category
See explanation for "cc" in Function i11100
4. NN - Alarm Type Number
See explanation for "NN" in Function i11100
5. TT - Tank/ Sensor Number
6. SS - Alarm State
01 – Alarm cleared
02 – Alarm occurred
7. YYMMDDHHmm - Date and Time first alarm occurred
8. aaaa - number of times alarm occurred (hex)
9. && - Data Termination Flag
10. CCCC - Message Checksum
Command Format:
Display: <SOH>I201TT
Computer: <SOH>i201TT
<SOH>
I20101
22-05-01 14:56
INVENTORY REPORT
<SOH>i201TTYYMMDDHHmmTTpssssNNFFFFFFFF...
TTpssssNNFFFFFFFF...&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. p - Product Code (single ASCII character, from 20 Hex - 7E Hex)
4. ssss - Tank Status Bits:
Bit 1 - (LSB) Delivery in Progress
Bit 2 - Leak Test in Progress
Bit 3 - Invalid Fuel Height Alarm (MAG Probes Only)
Bit 4-16 - Unused
5. NN - Number of eight character Data Fields to follow (Hex)
6. FFFFFFFF - ASCII Hex IEEE float:
1. Volume
2. TC Volume
3. Ullage
4. Height
5. Water
6. Temperature
7. Water Volume
7. && - Data Termination Flag
8. CCCC - Message Checksum
Command Format:
Display: <SOH>I202TT
Computer: <SOH>i202TT
<SOH>
I20201
22-05-01 14:56
DELIVERY REPORT
<SOH>i202TTYYMMDDHHmmTTpddYYMMDDHHmmYYMMDDHHmmNNFFFFFFFF...
TTpddYYMMDDHHmmYYMMDDHHmmNNFFFFFFFF...&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. p - Product Code (single ASCII character, from 20 Hex - 7E Hex)
4. dd - Number of Deliveries to follow (Decimal, 00 if no data
available for this tank)
5. YYMMDDHHmm - Starting Date/Time
6. YYMMDDHHmm - Ending Date/Time
7. NN - Number of eight character Data Fields to follow (Hex)
8. FFFFFFFF - ASCII Hex IEEE float:
1. Starting Volume
2. Starting TC Volume
3. Starting Water
4. Starting Temp
5. Ending Volume
6. Ending TC Volume
7. Ending Water
8. Ending Temp
9. Starting Height
10. Ending Height
9. && - Data Termination Flag
10. CCCC - Message Checksum
Command Format:
Display: <SOH>I203TT
Computer: <SOH>i203TT
<SOH>
I20301
22-05-01 14:56
T 1 REGULAR UNLEADED
TEST STATUS: OFF 0.20 GAL/HR TEST PASS
TEST STARTING TIME: 19-05-01 10:30 PM TEST LENGTH: 3.0 HOURS
START TEMP: 58.7 DEG F START VOLUME: 2123.2 GAL
END TEMP: 58.1 DEG F LEAK RATE: -0.01 GAL/HR
<SOH>i203TTYYMMDDHHmmTTpYYMMDDHHmmHHNNFFFFFFFF...
TTpYYMMDDHHmmHHNNFFFFFFFF...&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. p - Product Code (single ASCII character, from 20 Hex - 7E Hex)
4. YYMMDDHHmm - Starting Date/Time
5. HH - Test Duration (hours)
6. NN - Number of eight character Data Fields to follow (Hex)
7. FFFFFFFF - ASCII Hex IEEE float:
1. Starting Temp
2. Ending Temp
3. Starting Volume
4. Ending Rate
5. Hourly changes up to the number of fields
8. && - Data Termination Flag
9. CCCC - Message Checksum
Command Format:
Display: <SOH>I204TT
Computer: <SOH>i204TT
<SOH>
I20401
22-05-01 14:56
SHIFT REPORT
TANK PRODUCT
<SOH>i204TTYYMMDDHHmmTTpssNNFFFFFFFF...
TTpssNNFFFFFFFF...&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. p - Product Code (single ASCII character, from 20 Hex - 7E Hex)
4. ss - Shift Number 01, 02, 03
5. NN - Number of eight character Data Fields to follow (Hex)
6. FFFFFFFF - ASCII Hex IEEE float:
1. Start Volume
2. Start Ullage
3. Start TC Volume
4. Start Height
5. Start Water
6. Start Temperature
7. End Volume
8. End Ullage
9. End TC Volume
A. End Height
B. End Water
C. End Temperature
D. Total Value
7. && - Data Termination Flag
8. CCCC - Message Checksum
Command Format:
Display: <SOH>I205TT
Computer: <SOH>i205TT
<SOH>
I20501
22-05-01 14:57
STATUS REPORT
TANK
1 ALL FUNCTIONS NORMAL
<ETX>
<SOH>i205TTYYMMDDHHmmTTnnAA...
TTnnAA...&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. nn - Number of alarms active for tank (Hex, 00 = none)
4. AA - Active tank alarm type:
03 = Tank High Water Alarm
04 = Tank Overfill Alarm
05 = Tank Low Product Alarm
08 = Tank Invalid Fuel Level Alarm
09 = Tank Probe Out Alarm
11 = Tank Delivery Needed Warning
12 = Tank Maximum Product Alarm
13 = Tank Gross Leak Test Fail Alarm
14 = Tank Periodic Leak Test Fail Alarm
15 = Tank Annual Leak Test Fail Alarm
27 = Tank Cold Temperature Warning
5. && - Data Termination Flag
6. CCCC - Message Checksum
Command Format:
Display: <SOH>I206TT
Computer: <SOH>i206TT
<SOH>
I20601
22-05-01 14:57
<SOH>i206TTYYMMDDHHmmTTnnYYMMDDHHmmaaaa...
TTnnYYMMDDHHmmaaaa...&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. nn - Number of alarms in history for tank (Decimal, 00 = none)
4. YYMMDDHHmm - Date and time alarm occurred
5. aaaa - Type of alarm:
0003 = Tank High Water Alarm
0004 = Tank Overfill Alarm
0005 = Tank Low Product Alarm
0008 = Tank Invalid Fuel Level Alarm
0009 = Tank Probe Out Alarm
000B = Tank Delivery Needed Warning
000C = Tank Maximum Product Alarm
000D = Tank Gross Leak Test Fail Alarm
000E = Tank Periodic Leak Test Fail Alarm
000F = Tank Annual Leak Test Fail Alarm
001B = Tank Cold Temperature Warning
6. && - Data Termination Flag
7. CCCC - Message Checksum
Command Format:
Display: <SOH>I207TT
Computer: <SOH>i207TT
<SOH>
I20701
22-05-01 14:57
T 1 REGULAR UNLEADED
NO TEST PASSED
NO TEST PASSED
<SOH>i207TTYYMMDDHHmmTTNNRRnnttYYMMDDHHmmhhhhhhhhVVVVVVVVpppppppp...
TTNNRRnnttYYMMDDHHmmhhhhhhhhVVVVVVVVpppppppp...&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. NN - Number of Leak History Reports to Follow (Hex)
4. RR - Leak Report Type:
00 = Last Test Passed
01 = Fullest Test Passed
02 = Fullest Periodic Monthly Test Passed
5. nn - Leak History Number (1 - 12) for first Monthly Tests Passed
6. tt - In-Tank Leak Test Type:
00 = 0.2 gal/hr test
01 = 0.1 gal/hr test
02 = Gross (3 gal/hr)test
7. YYMMDDHHmm - In-Tank Leak Test Start Time
8. hhhhhhhh - Leak Test Duration in Hours (ASCII Hex IEEE float)
9. VVVVVVVV - Leak Test Volume (ASCII Hex IEEE float)
10. pppppppp - Leak Test Percentage of Full Volume (ASCII Hex IEEE float)
11. && - Data Termination Flag
12. CCCC - Message Checksum
Command Format:
Display: <SOH>I208TT
Computer: <SOH>i208TT
<SOH>
I20801
22-05-01 14:57
<SOH>i208TTYYMMDDHHmmTTNNttmmYYMMDDHHmmRRrrrrrrrrhhhhhhhhVVVVVVVV...
TTNNttmmYYMMDDHHmmRRrrrrrrrrhhhhhhhhVVVVVVVV...&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. NN - Number of Results to Follow (Hex)
4. tt - In-Tank Leak Test Result Type:
00 = 0.2 gal/hr Test
01 = 0.1 gal/hr Test
02 = Gross (3 gal/hr) Test
5. mm - In-Tank Leak Manifold Status:
00 = Tank Not Manifolded During Leak Test
01 = Tank Manifolded During Leak Test
6. YYMMDDHHmm - Previous In-Tank Leak Test Start Time
7. RR - Previous In-Tank Leak Test Result:
00 = Test Invalid
01 = Test Passed
02 = Test Failed
8. rrrrrrrr - Test Rate (ASCII Hex IEEE float)
9. hhhhhhhh - Leak Test Duration in Hours (ASCII Hex IEEE float)
10. VVVVVVVV - Leak Test Volume (ASCII Hex IEEE float)
11. && - Data Termination Flag
12. CCCC - Message Checksum
Command Format:
Display: <SOH>I209TT
Computer: <SOH>i209TT
<SOH>
I20901
22-05-01 14:57
T 1 REGULAR UNLEADED
TEST STATUS: OFF 0.20 GAL/HR TEST PASS
TEST STARTING TIME: 19-05-01 10:30 PM TEST LENGTH: 3.0 HOURS
START TEMP: 58.7 DEG F START VOLUME: 2123.2 GAL
END TEMP: 58.1 DEG F PERCENT VOLUME: 70.8
LEAK RATE: -0.01 GAL/HR
THRESHOLD: -0.13 GAL/HR
HEIGHT: 68.0 IN
WATER: 0.0 IN
<SOH>i209TTYYMMDDHHmmTTpYYMMDDHHmmHHNNFFFFFFFF...
TTpYYMMDDHHmmHHNNFFFFFFFF...&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. p - Product Code (single ASCII character, from 20 Hex - 7E Hex)
4. YYMMDDHHmm - Starting Date/Time
5. HH - Test Duration (hours)
6. NN - Number of eight character Data Fields to follow (Hex)
7. FFFFFFFF - ASCII Hex IEEE float:
1. Starting Temp
2. Ending Temp
3. Starting Volume
4. Ending Rate
4. Starting Fuel Height
5. Starting Water Height
6. Starting Water Height
7. Hourly changes up to the number of fields
8. && - Data Termination Flag
9. CCCC - Message Checksum
Command Format:
Display: <SOH>I20CTT
Computer: <SOH>i20CTT
<SOH>
I20C01
22-05-01 14:57
<SOH>i20CTTYYMMDDHHmmTTpddYYMMDDHHmmYYMMDDHHmmNNFFFFFFFF...
TTpddYYMMDDHHmmYYMMDDHHmmNNFFFFFFFF...&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. p - Product Code (single ASCII character, from 20 Hex - 7E Hex)
4. dd - Number of Deliveries to follow (Decimal, 00 if no data
available for this tank)
5. YYMMDDHHmm - Starting Date/Time
6. YYMMDDHHmm - Ending Date/Time
7. NN - Number of eight character Data Fields to follow (Hex)
8. FFFFFFFF - ASCII Hex IEEE float:
1. Starting Volume
2. Starting TC Volume
3. Starting Water
4. Starting Temp
5. Ending Volume
6. Ending TC Volume
7. Ending Water
8. Ending Temp
9. Starting Height
10. Ending Height
9. && - Data Termination Flag
10. CCCC - Message Checksum
Command Format:
Display: <SOH>I20DTT
Computer: <SOH>i20DTT
Notes:
1. This command will respond only if stick height is enabled.
Tank stick height is fuel height (without tilt) + stick
offset. If the stick height is less then zero, it will be
set to zero. If the stick height is greater than tank
diameter, it will be set to tank diameter.
<SOH>
I20D01
22-05-01 14:57
<SOH>i20DTTYYMMDDHHmmTTFFFFFFFF...
TTFFFFFFFF&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. FFFFFFFF - Stick Height (ASCII Hex IEEE float)
4. && - Data Termination Flag
5. CCCC - Message Checksum
Command Format:
Display: <SOH>I406RR
Computer: <SOH>i406RR
<SOH>
I40600
22-05-01 14:57
<SOH>i406RRYYMMDDHHmmRRssss...
RRssss&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. RR - Relay Number (Decimal, 00 = all)
3. ssss - Relay Status:
0001 - Relay Open
0002 - Relay Closed
4. && - Data Termination Flag
5. CCCC - Message Checksum
<SOH>
I50100
22-05-01 14:58
<SOH>i50100YYMMDDHHmmYYMMDDHHmm&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. YYMMDDHHmm - Year, Month, Day, Hour and Minute
3. && - Data Termination Flag
4. CCCC - Message Checksum
<SOH>
I50201
22-05-01 14:58
<SOH>i502SSYYMMDDHHmmSSHHmm&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. SS - Shift Start time (01, 02, 03, 04)
3. HHmm - Hour and Minute (EE00 = Disabled)
4. && - Data Termination Flag
5. CCCC - Message Checksum
<SOH>
I50301
22-05-01 14:58
<SOH>i503LLYYMMDDHHmmaaaaaaaaaaaaaaaaaaaa&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. LL - Header line number 1, 2, 3, 4
3. a - Header Line (20 ASCII characters from 20 Hex - 7E Hex)
4. && - Data Termination Flag
5. CCCC - Message Checksum
<SOH>
I50400
22-05-01 14:58
1 000000 DISABLED
2 000000 DISABLED
<ETX>
<SOH>i50400YYMMDDHHmmaaaaaa&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. aaaaaa - Security Code (6 ASCII characters from 20 Hex - 7E Hex)
3. && - Data Termination Flag
4. CCCC - Message Checksum
<SOH>
I50C00
22-05-01 14:58
PAGE EJECT : NO
<ETX>
<SOH>i50C00YYMMDDHHmmf&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. f - Page Eject Flag:
0 = Disabled
1 = Enabled
3. && - Data Termination Flag
4. CCCC - Message Checksum
<SOH>
I50D00
22-05-01 14:59
PRINT TC VOLUMES
DISABLED
<ETX>
<SOH>i50D00YYMMDDHHmmf&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. f - Print Temperature Compensation Flag
0 = Disable
1 = Enable
3. && - Data Termination Flag
4. CCCC - Message Checksum
Notes:
1. DDD.hh - Compensation Temperature, Degrees and hundredths (Decimal)
2. FFFFFFFF - Compensation Temperature, Degrees (ASCII Hex IEEE float)
<SOH>
I50E01
22-05-01 14:59
TEMP COMPENSATION
VALUE (DEG F ): 59.0
<ETX>
<SOH>i50E00YYMMDDHHmmFFFFFFFF&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. FFFFFFFF - Compensation Temperature, Degrees (ASCII Hex IEEE float)
3. && - Data Termination Flag
4. CCCC - Message Checksum
<SOH>
I50F00
22-05-01 14:59
DD-MM-YY HH:MM:SS
<ETX>
<SOH>i50F00YYMMDDHHMMxx&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. xx - Display format for DATE/TIME code
01 - MON DD, YYYY HH:MM:SS xM (12 Hour Clock)
02 - MON DD YYYY HH:MM:SS (24 Hour Clock)
03 - MM-DD-YY HH:MM:SS xM (12 Hour Clock)
04 - MM-DD-YY HH:MM:SS (24 Hour Clock)
05 - DD-MM-YY HH:MM:SS (24 Hour Clock)
06 - YY-MM-DD HH:MM:SS (24 Hour Clock)
3. && - Data Termination Flag
4. CCCC - Message Checksum
<SOH>
I51400
22-05-01 14:59
<SOH>i51400YYMMDDHHmmf&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. f - Data Format
0 = Height
1 = Volume
3. && - Data Termination Flag
4. CCCC - Message Checksum
<SOH>
I51700
22-05-01 14:59
LANG : ENGLISH
UNITS : U.S.
<ETX>
<SOH>i51700YYMMDDHHmmULL&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. U - System Units:
1 = U.S.
2 = Metric
3 = Imperial Gallons
3. LL - System Language:
01 = English
02 = French
03 = Spanish
05 = Portuguese
15 = Chinese
4. && - Data Termination Flag
5. CCCC - Message Checksum
<SOH>
I51A00
22-05-01 14:59
<SOH>i51A00YYMMDDHHmmf&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. f - Daylight Saving Time Flag
0 = Disabled
1 = Enabled
3. && - Data Termination Flag
4. CCCC - Message Checksum
<SOH>
I51B00
22-05-01 15:02
<SOH>i51B00YYMMDDHHmmttMMWDHHmm&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. tt - Start or End Time Indicator
01 = Start Date & Time
02 = End Date & Time
3. MMWDHHmm - Date & Time
MM = Month (01 - 12)
W = Week of Month (1 - 6)
D = Day of Week (1=Monday, 2=Tuesday, .. 7=Sunday)
HH = Hour (00 - 23)
mm = Minute (00 - 59)
4. && - Data Termination Flag
5. CCCC - Message Checksum
<SOH>
I51F00
22-05-01 15:02
<SOH>i51F00YYMMDDHHmme&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. e - Euro Protocol Prefix
0 = S
1 = d
3. && - Data Termination Flag
4. CCCC - Message Checksum
<SOH>
I52301
22-05-01 15:02
<SOH>i523RRYYMMDDHHmmRRaaaaaaaaaaaaaaaaaaaa
RRaaaaaaaaaaaaaaaaaaaa&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. RR - Receiver Number (Decimal, 01 only)
3. a - Phone Number (20 ASCII characters from 20 Hex - 7E Hex)
4. && - Data Termination Flag
5. CCCC - Message Checksum
<SOH>
I52601
22-05-01 15:02
RETRY NUMBER
<SOH>i526RRYYMMDDHHmmRRnn
RRnn&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. RR - Receiver Number (Decimal, 01 only)
3. nn - Retry Number (03 through 99)
4. && - Data Termination Flag
5. CCCC - Message Checksum
<SOH>
I52701
22-05-01 15:03
<SOH>i527RRYYMMDDHHmmRRnn
RRnn&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. RR - Receiver Number (Decimal, 01 only)
3. nn - Retry Delay Time (00 to 60 minutes)
4. && - Data Termination Flag
5. CCCC - Message Checksum
<SOH>
I52C01
22-05-01 15:06
RECEIVER : 01
IN-TANK ALARMS :
T 1:MAX PRODUCT
T 1:DELIVERY NEEDED
<ETX>
<SOH>i52CRRYYMMDDHHmmRRnnAANNTTSS...
RRnnAANNTTSS...&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. RR - Receiver Number (Decimal, 01 only)
3. nn - Number of Alarms to Follow (Hex)
4. AA - Alarm/Warning Category:
02 - Tank Alarm
5. NN - Alarm Type Number:
- If AA is 02 and NN is:
03 = Tank High Water Alarm
04 = Tank Overfill Alarm
05 = Tank Low Product Alarm
08 = Tank Invalid Fuel Level Alarm
09 = Tank Probe Out Alarm
11 = Tank Delivery Needed Warning
12 = Tank Maximum Product Alarm
13 = Tank Gross Leak Test Fail Alarm
14 = Tank Periodic Leak Test Fail Alarm
15 = Tank Annual Leak Test Fail Alarm
27 = Tank Cold Temperature Warning
6. TT - Tank/Sensor Number (Decimal, 00 = all)
7. SS - Status (Hex):
00 = Clear
01 = Set
8. && - Data Termination Flag
9. CCCC - Message Checksum
<SOH>
I53501
22-05-01 15:06
RCVR METHOD
1 CHARACTER
<ETX>
<SOH>i53500YYMMDDHHmm00MM...
00MM&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. MM - Hang-up Method:
00 - Character
01 - Hangup
3. && - Data Termination Flag
4. CCCC - Message Checksum
Notes:
1. PP - Port number (Decimal, 01 - 02; 99=this port)
2. s - Enable or Disable Status (if disabled no password is
required)
3. aaaaaa - Security code (6 ASCII characters from 20 hex - 7E Hex)
<SOH>
I53601
22-05-01 15:06
1 000000 DISABLED
<ETX>
<SOH>i536PPYYMMDDHHmmsaaaaaa&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. s - Status
00 - Disabled
01 - Enabled
3. aaaaaa - Security code (6 ASCII characters from 20 hex - 7E Hex)
4. && - Data Termination Flag
5. CCCC - Message Checksum
<SOH>
I55C01
22-05-01 15:06
<SOH>i55C00YYMMDDHHmmM&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. M - Relay mode:
0 = None
1 = Overfill
2 = Any Alarm
3. && - Data Termination Flag
4. CCCC - Message Checksum
<SOH>
I60101
22-05-01 15:07
TANK CONFIGURATION
<SOH>i601TTYYMMDDHHmmTTf
TTf&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. f - Tank Configuration Flag:
0 = Off
1 = On
4. && - Data Termination Flag
5. CCCC - Message Checksum
<SOH>
I60201
22-05-01 15:07
<SOH>i602TTYYMMDDHHmmTTaaaaaaaaaaaaaaaaaaaa
TTaaaaaaaaaaaaaaaaaaaa&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. a - Product Label (20 ASCII characters from 20 Hex - 7E Hex)
4. && - Data Termination Flag
5. CCCC - Message Checksum
Notes:
1. TT - Tank Number (Decimal, 00 = all)
2. GGGGGG - Full Height Volume, Gallons (Decimal)
3. FFFFFFFF - Full Height Volume, Gallons (ASCII Hex IEEE float)
<SOH>
I60401
22-05-01 15:07
<SOH>i604TTYYMMDDHHmmTTFFFFFFFF
TTFFFFFFFF&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. FFFFFFFF - Full Height Volume, Gallons (ASCII Hex IEEE float)
4. && - Data Termination Flag
5. CCCC - Message Checksum
Notes:
1. TT - Tank Number (Decimal, 00 = all)
2. GGGGGG - Full Height Volume, Gallons (Decimal)
3. gggggg - 3/4 Height Volume, Gallons (Decimal)
4. GGGGGG - 1/2 Height Volume, Gallons (Decimal)
5. gggggg - 1/4 Height Volume, Gallons (Decimal)
6. FFFFFFFF - Full Height Volume, Gallons (ASCII Hex IEEE float)
7. ffffffff - 3/4 Height Volume, Gallons (ASCII Hex IEEE float)
8. FFFFFFFF - 1/2 Height Volume, Gallons (ASCII Hex IEEE float)
9. ffffffff - 1/4 Height Volume, Gallons (ASCII Hex IEEE float)
<SOH>
I60501
22-05-01 15:07
<SOH>i605TTYYMMDDHHmmTTFFFFFFFFffffffffFFFFFFFFffffffff
TTFFFFFFFFffffffffFFFFFFFFffffffff&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. FFFFFFFF - Full Height Volume, Gallons (ASCII Hex IEEE float)
4. ffffffff - 3/4 Height Volume, Gallons (ASCII Hex IEEE float)
5. FFFFFFFF - 1/2 Height Volume, Gallons (ASCII Hex IEEE float)
6. ffffffff - 1/4 Height Volume, Gallons (ASCII Hex IEEE float)
7. && - Data Termination Flag
8. CCCC - Message Checksum
Notes:
1. TT - Tank Number (Decimal, 00 = all)
2. GGGGGGgggggg - Series of 20 Volumes, Gallons (Decimal)
3. FFFFFFFF - Series of 20 Volumes, Gallons (ASCII Hex IEEE float)
<SOH>
I60601
22-05-01 15:07
<SOH>i606TTYYMMDDHHmmTTFFFFFFFF...
TTFFFFFFFF...&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. FFFFFFFF - Series of 20 Volumes, Gallons (ASCII Hex IEEE float)
4. && - Data Termination Flag
5. CCCC - Message Checksum
Notes:
1. TT - Tank Number (Decimal, 00 = all)
2. III.hh - Tank Diameter, Inches and hundredths (Decimal)
3. FFFFFFFF - Tank Diameter, Inches (ASCII Hex IEEE float)
<SOH>
I60701
22-05-01 15:07
TANK DIAMETER
<SOH>i607TTYYMMDDHHmmTTFFFFFFFF
TTFFFFFFFF&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. FFFFFFFF - Tank Diameter, Inches (ASCII Hex IEEE float)
4. && - Data Termination Flag
5. CCCC - Message Checksum
Notes:
1. TT - Tank Number (Decimal, 00 = all)
2. III.hh - Tank Tilt, Inches and hundredths (Decimal)
3. FFFFFFFF - Tank Tilt, Inches (ASCII Hex IEEE float)
<SOH>
I60801
22-05-01 15:07
TANK TILT
<SOH>i608TTYYMMDDHHmmTTFFFFFFFF
TTFFFFFFFF&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. FFFFFFFF - Tank Tilt, Inches (ASCII Hex IEEE float)
4. && - Data Termination Flag
5. CCCC - Message Checksum
Notes:
1. TT - Tank Number (Decimal, 00 = all)
2. c.cccccc - Thermal Expansion Coefficient (decimal)
3. FFFFFFFF - Thermal Expansion Coefficient (ASCII Hex IEEE float)
<SOH>
I60901
22-05-01 15:07
<SOH>i609TTYYMMDDHHmmTTFFFFFFFF
TTFFFFFFFF&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. FFFFFFFF - Thermal Expansion Coefficient (ASCII Hex IEEE float)
4. && - Data Termination Flag
5. CCCC - Message Checksum
Notes:
1. TT - Tank Number (Decimal, 00 = all)
2. GGGGGG - Full Height Volume, Gallons (Decimal)
3. FFFFFFFF - Full Height Volume, Gallons (ASCII Hex IEEE float)
<SOH>
I60A01
22-05-01 15:08
<SOH>i60ATTYYMMDDHHmmTTFFFFFFFF
TTFFFFFFFF&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. FFFFFFFF - Full height volume (ASCII Hex IEEE float)
4. && - Data Termination Flag
5. CCCC - Message Checksum
<SOH>
I60B01
22-05-01 15:08
<SOH>i60B00YYMMDDHHmmf&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. f - Stick Height Function:
0 = Disabled
1 = Enabled
3. && - Data Termination Flag
4. CCCC - Message Checksum
Notes:
1. TT - Tank Number (Decimal, 00 = all)
2. III.hh - Stick Height Offset, Inches and hundredths (Decimal)
3. FFFFFFFF - Stick Height Offset, Inches (ASCII Hex IEEE float). Value
must be within the range of +144 to -144 inches. It is used
to calculate stick height = height (without tilt) + stick
offset
<SOH>
I60C01
22-05-01 15:08
<SOH>i60CTTYYMMDDHHmmTTFFFFFFFF
TTFFFFFFFF&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. FFFFFFFF - Stick Height Offset, Inches (ASCII Hex IEEE float)
4. && - Data Termination Flag
5. CCCC - Message Checksum
<SOH>
I60D01
22-05-01 15:08
TANK 1 0
<ETX>
<SOH>i60DTTYYMMDDHHmmTTLL&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank number
3. LL - Fixed product label index:
00 = NONE
01 = DIESEL
02 = GASOLINE UNLEADED
03 = SUPER UNLEADED
04 = PREMIUM
4. && - Data Termination Flag
5. CCCC - Message Checksum
<SOH>
I61001
22-05-01 15:08
<SOH>i610TTYYMMDDHHmmTTdd
TTdd&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. dd - Indicates the length of time in minutes (01-99)
4. && - Data Termination Flag
5. CCCC - Message Checksum
<SOH>
I61101
22-05-01 15:09
<SOH>i611TTYYMMDDHHmmTTDDRMYYMMDDHHmm (if M = 1)
MMWDHHmm (if M = 2)
WDHHmm (if M = 3)
DHHmm (if M = 4)
HHmm (if M = 5)
(none) (if M = 6)
(none) (if M = 7)
TTDDRMYYMMDDHHmm&&CCCC<ETX> (if M = 1)
MMWDHHmm&&CCCC<ETX> (if M = 2)
WDHHmm&&CCCC<ETX> (if M = 3)
DHHmm&&CCCC<ETX> (if M = 4)
HHmm&&CCCC<ETX> (if M = 5)
&&CCCC<ETX> (if M = 6)
&&CCCC<ETX> (if M = 7)
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. DD - Leak test Duration in hours (2 <= DD <= 24)
4. R - Leak test Rate (0 = 0.2, 1 = 0.1)
- If M = 1 ON DATE, YYMMDDHHmm:
YY = Year
MM = Month (01 - 12)
DD = Day
HHmm = Hour, Minute (EE00 = Disabled)
- If M = 2 ANNUALLY, MMWDHHmm:
MM = Month (01 - 12)
W = Week Number (1 - 4)
D = Day (1 = Monday, 2 = Tuesday, . . . 7 = Sunday)
HHmm = Hour, Minute (EE00 = Disabled)
- If M = 3 MONTHLY, WDHHmm:
W = Week Number (1 - 4)
D = Day (1 = Monday, 2 = Tuesday, . . . 7 = Sunday)
HHmm = Hour, Minute (EE00 = Disabled)
- If M = 4 WEEKLY, DHHmm:
D = Day (1 = Monday, 2 = Tuesday, . . . 7 = Sunday)
HHmm = Hour, Minute (EE00 = Disabled)
- If M = 5 DAILY, HHmm:
HHmm = Hour, Minute (EE00 = Disabled)
<SOH>
I61201
22-05-01 15:09
<SOH>i612TTYYMMDDHHmmTTNNtt...
TTNNtt...&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Number of the first tank to be manifolded
3. NN - Number of tanks that are manifolded together
4. tt - Tank numbers of other tanks to be manifolded to first tank
5. && - Data Termination Flag
6. CCCC - Message Checksum
<SOH>
I61A01
22-05-01 15:09
<SOH>i6A000YYMMDDHHmmTTf...
TTf&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. f - In-Tank Leak Test Early Stop Flag:
0 = DISABLED
1 = ENABLED
3. && - Data Termination Flag
4. CCCC - Message Checksum
Notes:
1. TT - Tank Number (Decimal, 00 = all)
2. GGGGGG - Low Level Limit, Gallons (Decimal)
3. FFFFFFFF - Low Level Limit, Gallons (ASCII Hex IEEE float)
<SOH>
I62101
22-05-01 15:09
<SOH>i621TTYYMMDDHHmmTTFFFFFFFF
TTFFFFFFFF&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. FFFFFFFF - Low Level Limit, Gallons (ASCII Hex IEEE float)
4. && - Data Termination Flag
5. CCCC - Message Checksum
Notes:
1. TT - Tank Number (Decimal, 00 = all)
2. GGGGGG - Overfill Level Limit, Gallons (Decimal)
3. FFFFFFFF - Overfill Level Limit, Gallons (ASCII Hex IEEE float)
<SOH>
I62301
22-05-01 15:09
<SOH>i623TTYYMMDDHHmmTTFFFFFFFF
TTFFFFFFFF&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. FFFFFFFF - Overfill Level Limit, Gallons (ASCII Hex IEEE float)
4. && - Data Termination Flag
5. CCCC - Message Checksum
Notes:
1. TT - Tank Number (Decimal, 00 = all)
2. II.t - High Water Level Limit, Inches and tenths (Decimal,
Max=05.0)
3. FFFFFFFF - High Water Level Limit, Inches (ASCII Hex IEEE float)
<SOH>
I62401
22-05-01 15:09
<SOH>i624TTYYMMDDHHmmTTFFFFFFFF
TTFFFFFFFF&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. FFFFFFFF - High Water Level Limit, Inches (ASCII Hex IEEE float)
4. && - Data Termination Flag
5. CCCC - Message Checksum
Notes:
1. TT - Tank Number (Decimal, 00 = all)
2. GGGGGG - Maximum Volume Limit, Gallons (Decimal)
3. FFFFFFFF - Maximum Volume Limit, Gallons (ASCII Hex IEEE float)
<SOH>
I62801
22-05-01 15:10
<SOH>i628TTYYMMDDHHmmTTFFFFFFFF
TTFFFFFFFF&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. FFFFFFFF - Maximum Volume Limit, Gallons (ASCII Hex IEEE float)
4. && - Data Termination Flag
5. CCCC - Message Checksum
Notes:
1. TT - Tank Number (Decimal, 00 = all)
2. GGGGGG - Delivery Required Limit, Gallons (Decimal)
3. FFFFFFFF - Delivery Required Limit, Gallons (ASCII Hex IEEE float)
<SOH>
I62901
22-05-01 15:10
<SOH>i629TTYYMMDDHHmmTTFFFFFFFF
TTFFFFFFFF&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. FFFFFFFF - Delivery Required Limit, Gallons (ASCII Hex IEEE float)
4. && - Data Termination Flag
5. CCCC - Message Checksum
Notes:
1. TT - Tank Number (Decimal, 00 = all)
2. GGGGGG - Annual Test Minimum Volume, Gallons (Decimal)
3. FFFFFFFF - Annual Test Minimum Volume, Gallons (ASCII Hex IEEE float)
<SOH>
I62A01
22-05-01 15:10
<SOH>i62ATTYYMMDDHHmmTTFFFFFFFF
TTFFFFFFFF&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. FFFFFFFF - Annual Test Minimum Volume, Gallons (ASCII Hex IEEE float)
4. && - Data Termination Flag
5. CCCC - Message Checksum
<SOH>
I62D01
22-05-01 15:10
<SOH>i62DTTYYMMDDHHmmTTgpa
TTgpa&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. g - Gross Test Fail Alarm
0 = Disabled
1 = Enabled
4. p - Periodic Test Fail Alarm
0 = Disabled
1 = Enabled
5. a - Annual Test Fail Alarm
0 = Disabled
1 = Enabled
6. && - Data Termination Flag
7. CCCC - Message Checksum
<SOH>
I62F01
22-05-01 15:10
<SOH>i62FTTYYMMDDHHmmTTf
TTf&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. f - Mag Probe Float Size
0 = 4.0"
1 = 2.0"
2 = 3.0"
4. && - Data Termination Flag
5. CCCC - Message Checksum
<SOH>
I63301
22-05-01 15:10
<SOH>i63300YYMMDDHHmmf&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. f - Leak test Report Type:
0 = Normal
1 = Enhanced
3. && - Data Termination Flag
4. CCCC - Message Checksum
Notes:
1. TT - Tank Number (Decimal, 00 = all)
2. GGGGGG - Periodic Test Minimum Volume, Gallons (Decimal)
3. FFFFFFFF - Periodic Test Minimum Volume, Gallons (ASCII Hex IEEE float)
<SOH>
I63601
22-05-01 15:10
<SOH>i636TTYYMMDDHHmmTTFFFFFFFF
TTFFFFFFFF&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. FFFFFFFF - Periodic Test Minimum Volume, Gallons (ASCII Hex IEEE float)
4. && - Data Termination Flag
5. CCCC - Message Checksum
<SOH>
I63801
22-05-01 15:11
<SOH>i638TTYYMMDDHHmmTTppp&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank number (Decimal, 00 = all)
3. ppp - Tank Overfill Percent (Decimal, 000 - 100)
4. && - Data Termination Flag
5. CCCC - Message Checksum
Notes:
1. ss - Save set up data Flag (see below)
2. 149 - This verification code must be sent to confirm the command
<SOH>
I85400
22-05-01 15:11
<SOH>i85400YYMMDDHHmmss&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. ss - Save set up data Flag:
00 = Idle
01 = Store setup
02 = Restore setup
03 = Store delivery
04 = Restore delivery
05 = Store leak test history
06 = Restore leak test history
07 = Store shift history
08 = Restore shift history
09 = Store alarm history
10 = Restore alarm history
11 = Store miscellaneous history
12 = Restore miscellaneous history
13 = Ram clear initialize
14 = Ram clear
3. && - Data Termination Flag
4. CCCC - Message Checksum
Notes:
1. PP - Communication Port Number (Decimal 01 - 02)
<SOH>
I88101
22-05-01 15:11
PORT SETTINGS:
COMM 1 : SERIAL
HANDSHAKE : NONE
<ETX>
<SOH>i881PPYYMMDDHHmmPPBBBBBPSDTAA&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. BBBBB - Baud Rate (Decimal)
3. P - Parity (Decimal; 0=None, 1 or 2)
4. S - Stop Bit (Decimal; 1 or 2)
5. D - Data Bit (Decimal; 7 or 8)
6. T - Pulse or Tone (Decimal; 0=Tone, 1=Pulse)
7. AA - Number of Rings before Answer (Decimal)
8. && - Data Termination Flag
9. CCCC - Message Checksum
Notes:
1. PP - Communication Port Number (Decimal 01 - 02)
2. 149 - This verification code must be sent to confirm the command
<SOH>
I88201
22-05-01 15:11
PORT SETTINGS:
COMM 1 : SERIAL
HANDSHAKE : NONE
<ETX>
<SOH>i882PPYYMMDDHHmmPPBBBBBPSDTAA&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. BBBBB - Baud Rate (Decimal)
3. P - Parity (Decimal; 0=None, 1 or 2)
4. S - Stop Bit (Decimal; 1 or 2)
5. D - Data Bit (Decimal; 7 or 8)
6. T - Pulse or Tone (Decimal; 0=Tone, 1=Pulse)
7. AA - Number of Rings before Answer (Decimal)
8. && - Data Termination Flag
9. CCCC - Message Checksum
<SOH>
I88301
22-05-01 15:11
SERIAL LANGUAGE
LANG : ENGLISH
<ETX>
<SOH>i883YYMMDDHHmmLL&&CCCC<ETX>
Notes:
1. MMDDYYHHmm - Current Date and time
2. LL - Serial Communication Language:
1 = English
2 = French
3 = Spanish
5 = Portuguese
3. && - Data Termination Flag
4. CCCC - Message Checksum
<SOH>
I88401
22-05-01 15:11
HANDSHAKE : NONE
<ETX>
<SOH>i88400YYMMDDHHmmf&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. f - Handshaking Flag: Sets handshaking method for port on which
command is received
0 = Disabled
1 = Hardware
2 = XON/XOFF
3. && - Data Termination Flag
4. CCCC - Message Checksum
Notes:
1. PP - Communication Port Number (Decimal 01 - 02)
<SOH>
I88501
22-05-01 15:11
COMM BOARD : 1
MODEM TYPE : OTHER
<ETX>
<SOH>i885PPYYMMDDHHmmMM&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. MM - Modem Type:
02 = OTHER
03 = US ROBOTICS
04 = ZOOM
3. && - Data Termination Flag
4. CCCC - Message Checksum
Notes:
1. PP - Communication Port Number (Decimal 01 - 02)
<SOH>
I88601
22-05-01 15:11
COMM BOARD : 1
MODEM SETUP STRING :
<ETX>
<SOH>i886PPYYMMDDHHmmaaaaaaaaaaaaaaaaaaaa&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. a - Modem Setup String (20 ASCII characters)
3. && - Data Termination Flag
4. CCCC - Message Checksum
Notes:
1. PP - Communication Port Number (Decimal 01 - 02)
<SOH>
I88A01
22-05-01 15:12
COMM 1: SERIAL
<ETX>
<SOH>i88APPYYMMDDHHmmt&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. t - Communications Port Type:
0 = Printer
1 = Modem
2 = Serial
3 = None
3. && - Data Termination Flag
4. CCCC - Message Checksum
Notes:
1. PP - Communication Port Number (Decimal 01 - 03)
<SOH>
I88B01
22-05-01 15:12
<SOH>i88BPPYYMMDDHHmmll&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. ll - Printer language:
00 = EPSON
01 = IBM
02 = PU_414
3. && - Data Termination Flag
4. CCCC - Message Checksum
Notes:
1. PP - Communication Port Number (Decimal 01 - 02)
<SOH>
I88C01
22-05-01 15:12
COMM BOARD : 1
MODEM SETUP STRING :
<ETX>
<SOH>i88CPPYYMMDDHHmmaaaaaaaaaaaaaaaaaaaa&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. a - Dial Out String (20 ASCII characters)
3. && - Data Termination Flag
4. CCCC - Message Checksum
Command Format:
Display: <SOH>I90200
Computer: <SOH>i90200
<SOH>
I90200
22-05-01 15:12
SOFTWARE# 349783-001-AXM
CREATED - 01.05.17.15.11
SYSTEM FEATURES:
PERIODIC IN-TANK TESTS
ANNUAL IN-TANK TESTS
<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. nnnnnn-vvv - Software version number (ASCII text string)
3. rrr - Software revision level (ASCII text string)
4. YY.MM.DD.HH.mm - Date and time of software creation
5. && - Data Termination Flag
6. CCCC - Message Checksum
Command Format:
Display: <SOH>I90500
Computer: <SOH>i90500
<SOH>
I90500
22-05-01 15:12
SOFTWARE# 349783-001-AXM
CREATED - 01.05.17.15.11
SYSTEM FEATURES:
PERIODIC IN-TANK TESTS
ANNUAL IN-TANK TESTS
<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. 346 - Software Base number (fixed)
3. a - Platform
0 = Standard CPU, PLLD only
1 = Enhanced CPU
2 = (Unused)
3 = Enhanced CPU 16 Tank
4 = Standard CPU without PLLD & WPLLD
5 = Standard CPU, WPLLD only
4. bb - Version level (eg version "15")
5. T - Software Type
1 = "Real"
2 = "Demo"
3 = "IFSF"
6. vv - Language
00 = English/Spanish
01 = English/French
02 = English/German
03 = English/Swedish
04 = English/Portuguese
05 = English/Polish
06 = English/Finnish
07 = English/Japanese
08 = English/Greek
09 = English/Russian
10 = English/Turkish
11 = English/Dutch
12 = English/Italian
99 = English only
Command Format:
Display: <SOH>IA01TT
Computer: <SOH>iA01TT
<SOH>
IA0101
22-05-01 15:12
TYPE CODE LENGTH SERIAL NO. D/CODE OPT
TANK 1 REGULAR UNLEADED MAG C001 96.00 123001 0000 0x0000
<ETX>
<SOH>iA01TTYYMMDDHHmmTTpPPKKKKFFFFFFFFSSSSSScccc
TTpPPKKKKFFFFFFFFSSSSSScccc&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. p - Product Code (single ASCII character, from 20 Hex - 7E Hex)
4. PP - Probe Type:
00 - Unknown (no further data follows for this probe)
03 - MAG
5. KKKK - Circuit Code (Hex)
6. FFFFFFFF - Probe Length (ASCII Hex IEEE float)
7. SSSSSS - Probe Serial Number (Decimal)
8. cccc - Probe Date Code (Hex)
9. && - Data Termination Flag
10. CCCC - Message Checksum
Command Format:
Display: <SOH>IA02TT
Computer: <SOH>iA02TT
<SOH>
IA0201
22-05-01 15:12
TANK 1 REGULAR UNLEADED MAG GRADIENT = 180.0000 OPT= 0x0000
<ETX>
<SOH>iA02TTYYMMDDHHmmTTpPPNNFFFFFFFF...
TTpPPNNFFFFFFFF...&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. p - Product Code (single ASCII character, from 20 Hex - 7E Hex)
4. PP - Probe Type:
00 - Unknown (no further data follows for this probe)
03 - MAG
5. NN - Number of eight character Data Fields to follow (Hex)
6. FFFFFFFF - Probe Data (ASCII Hex IEEE float)
7. && - Data Termination Flag
8. CCCC - Message Checksum
Command Format:
Display: <SOH>IA10TT
Computer: <SOH>iA10TT
<SOH>
IA1001
22-05-01 15:13
TANK 1 REGULAR UNLEADED MAG NUMBER OF SAMPLES = 1
569.000 13584.000 13584.000 13584.000 13584.000 13585.000 13585.000 13584.000
13584.000 13585.000 13584.000 40000.000 21993.000 21993.000 21993.000 21993.000
21993.000 21993.000 40000.000
<ETX>
<SOH>iA10TTYYMMDDHHmmTTpPPSSSSNNFFFFFFFF...
TTpPPSSSSNNFFFFFFFF...&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. p - Product Code (single ASCII character, from 20 Hex - 7E Hex)
4. PP - Probe Type:
00 - Unknown (no further data follows for this probe)
03 - MAG
5. SSSS - Sample Number (Hex)
6. NN - Number of eight character Data Fields to follow (Hex)
7. FFFFFFFF - Probe Data (ASCII Hex IEEE float)
8. && - Data Termination Flag
9. CCCC - Message Checksum
Command Format:
Display: <SOH>IA11TT
Computer: <SOH>iA11TT
<SOH>
IA1101
22-05-01 15:13
TANK 1 REGULAR UNLEADED MAG NUMBER OF SAMPLES = 5
569.000 13584.000 13584.000 13584.000 13584.000 13585.000 13585.000 13584.000
13584.000 13585.000 13584.000 40000.000 21993.000 21993.000 21993.000 21993.000
21993.000 21993.000 40000.000
<ETX>
<SOH>iA11TTYYMMDDHHmmTTpPPSSSSNNFFFFFFFF...
TTpPPSSSSNNFFFFFFFF...&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. p - Product Code (single ASCII character, from 20 Hex - 7E Hex)
4. PP - Probe Type:
00 - Unknown (no further data follows for this probe)
03 - MAG
5. SSSS - Number of Samples (Hex)
6. NN - Number of eight character Data Fields to follow (Hex)
7. FFFFFFFF - Probe Data (ASCII Hex IEEE float)
8. && - Data Termination Flag
9. CCCC - Message Checksum
Command Format:
Display: <SOH>IA12TT
Computer: <SOH>iA12TT
<SOH>
IA1201
22-05-01 15:13
TANK 1 REGULAR UNLEADED MAG NUMBER OF SAMPLES = 20
569.000 13584.000 13584.000 13584.000 13584.000 13585.000 13585.000 13584.000
13584.000 13585.000 13584.000 40000.000 21993.000 21993.000 21993.000 21993.000
21993.000 21993.000 40000.000
<ETX>
<SOH>iA12TTYYMMDDHHmmTTpPPSSSSNNFFFFFFFF...
TTpPPSSSSNNFFFFFFFF...&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. p - Product Code (single ASCII character, from 20 Hex - 7E Hex)
4. PP - Probe Type:
00 - Unknown (no further data follows for this probe)
03 - MAG
5. SSSS - Number of Samples (Hex)
6. NN - Number of eight character Data Fields to follow (Hex)
7. FFFFFFFF - Probe Data (ASCII Hex IEEE float)
8. && - Data Termination Flag
9. CCCC - Message Checksum
Command Format:
Display: <SOH>IA13TT
Computer: <SOH>iA13TT
<SOH>
IA1301
22-05-01 15:13
TANK 1 REGULAR UNLEADED MAG NUMBER OF SAMPLES = 424
569.000 13584.000 13584.000 13584.000 13584.000 13585.000 13585.000 13584.000
13584.000 13585.000 13584.000 40000.000 21993.000 21993.000 21993.000 21993.000
21993.000 21993.000 40000.000
<ETX>
<SOH>iA13TTYYMMDDHHmmTTpPPSSSSNNFFFFFFFF...
TTpPPSSSSNNFFFFFFFF...&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. p - Product Code (single ASCII character, from 20 Hex - 7E Hex)
4. PP - Probe Type:
00 - Unknown (no further data follows for this probe)
03 - MAG
5. SSSS - Number of Samples (Hex)
6. NN - Number of eight character Data Fields to follow (Hex)
7. FFFFFFFF - Probe Data (ASCII Hex IEEE float)
8. && - Data Termination Flag
9. CCCC - Message Checksum
Command Format:
Display: <SOH>IA14TT
Computer: <SOH>iA14TT
<SOH>
IA1401
22-05-01 15:13
TNK LOW
NUM TEMP
1 NO
<ETX>
<SOH>iA14TTYYMMDDHHmmTTNNL...
TTNNL...&&CCCC<ETX>
Notes:
1. YYMMDDHHmm -
Current Date and Time
2. TT -
Tank Number (Decimal, 00 = all)
3. NN -
Number of option flags to follow
4. L -
Low temperature capability
0 = NO
1 = YES
5. && - Data Termination Flag
6. CCCC - Message Checksum
Command Format:
Display: <SOH>IA20TT
Computer: <SOH>iA20TT
<SOH>
IA2001
22-05-01 15:13
TANK 1 REGULAR UNLEADED MAG PRESENT LEAK TEST ANALYSIS REPORT
0.10 GAL/HR FLAGS:
0.20 GAL/HR FLAGS:
<ETX>
<SOH>iA20TTYYMMDDHHmmTTpPPNNFFFF...
TTpPPNNFFFF...&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. p - Product Code (single ASCII character, from 20 Hex - 7E Hex)
4. PP - Probe Type:
00 - Unknown (no further data follows for this probe)
03 - MAG
5. NN - Number of 4-character Flag sequences to follow (Hex)
6. FFFF - Flag sequence characters indicating which Flag bits are set
7. && - Data Termination Flag
8. CCCC - Message Checksum
Command Format:
Display: <SOH>IA21TT
Computer: <SOH>iA21TT
<SOH>
IA2101
22-05-01 15:13
TANK 1 REGULAR UNLEADED MAG STORED LEAK TEST ANALYSIS REPORT
0.10 GAL/HR FLAGS:
0.20 GAL/HR FLAGS:
<ETX>
<SOH>iA21TTYYMMDDHHmmTTpPPNNFFFF...
TTpPPNNFFFF...&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. p - Product Code (single ASCII character, from 20 Hex - 7E Hex)
4. PP - Probe Type:
00 - Unknown (no further data follows for this probe)
03 - MAG
5. NN - Number of 4-character Flag sequences to follow (Hex)
6. FFFF - Flag sequence characters indicating which Flag bits are set
7. && - Data Termination Flag
8. CCCC - Message Checksum
Command Format:
Display: <SOH>IA22TT
Computer: <SOH>iA22TT
<SOH>
IA2201
22-05-01 15:13
TANK 1 REGULAR UNLEADED MAG GROSS LEAK TEST ANALYSIS REPORT
<SOH>iA22TTYYMMDDHHmmTTpPPNNFFFF...
TTpPPNNFFFF...&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. p - Product Code (single ASCII character, from 20 Hex - 7E Hex)
4. PP - Probe Type:
00 - Unknown (no further data follows for this probe)
03 - MAG
5. NN - Number of 4-character Flag sequences to follow (Hex)
6. FFFF - Flag sequence characters indicating which Flag bits are set
7. && - Data Termination Flag
8. CCCC - Message Checksum
Command Format:
Display: <SOH>IA30TT
Computer: <SOH>iA30TT
<SOH>
IA3001
22-05-01 15:13
<SOH>iA30TTYYMMDDHHmmTTppFFFFFFFF
TTppFFFFFFFF&&CCCC<ETX>
Notes:
1. YYMMDDHHmm - Current Date and Time
2. TT - Tank Number (Decimal, 00 = all)
3. pp - Profile (HEX)
00 = 1 point
01 = 4 point
02 = Linear
03 = 20 point
4. FFFFFFFF - Full height volume (ASCII Hex IEEE float)
5. && - Data Termination Flag
6. CCCC - Message checksum