FS-8700-48 Fike Cheetah Manual
Page 20 of 36
FieldServer Technologies
1991 Tarob Court Milpitas, California 95035 USA
Web
: www.fieldserver.com
Tel
: (408) 262 2299
Fax
: (408) 262 2269
Toll Free
: (888) 509 1970
5.4.12
Map Descriptor Example 7 – Panel Data
This example provides a Map Descriptor which tells the driver where to store the non-zone/device specific data obtained from a panel. Appendix D.3 of the
manual maps how the data is stored. Ensure that the Data Array is long enough to store all the data.
// Client Side Map Descriptors
Map Descriptors
Map_Descriptor_Name , Data_Array_Name , Data_Array_Offset , Function , Node_Name , Cheet_Zone , Cheeet_Loop , Cheet_Device Cheet_DT , Length
CHEETAH27
, PANEL_DATA
, 0
, Passive , Panel_01
, None
, None
, None
, Panel
, 100
5.4.13
Map Descriptor Example 8 – History Data (All Devices)
In this example, 4 Map Descriptors process all history events on all four loops. One Data Array is used and loop #2’s data is stored at an offset location of 240
(max number of devices per loop) in the Data Array. The Device is set to ALL to tell the driver to process all devices on the loop using this Map Descriptor. If a
history event for device 100 on loop 3 is received then the driver will store the event code at location 480(=base offset for loop 3)+100 (=device address). The
event code will be stored as a number and the meaning of the number may be obtained by reading Appendix D.3
// Client Side Map Descriptors
Map_Descriptor_Name , Data_Array_Name , Data_Array_Offset , Function , Node_Name ,Cheet_Zone , Cheet_DT , Cheet_Device , Cheet_Loop
, Length
Device1_L1_Hist
, DA_HIST
, 0
, Passive , Node_A
, None
, History
, All
, 1
, 256
Device1_L2_Hist
, DA_HIST
, 240
, Passive , Node_A
, None
, History
, All
, 2
, 256
Device1_L3_Hist
, DA_HIST
, 480
, Passive , Node_A
, None
, History
, All
, 3
, 256
Device1_L4_Hist
, DA_HIST
, 720
, Passive , Node_A
, None
, History
, All
, 4
, 256
The
Panel
keyword is used to store
the panel data using this Map
Descriptor.
Map Descriptor will store
History data
History events relate to
devices and thus the zone
must be set to
None
.
One Map Descriptor is
required per loop.