Appendix a. useful features, Appendix a.1. using comments, Appendix a.2. using conditional process statements – ProSoft Technology PS-QS-1x10-0781 User Manual
Page 70: Appendix a.2.1, Disabling the client side of a configuration

FieldServer Configuration Manual
Page 70 of 90
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 email: [email protected]
Appendix A. Useful Features
Appendix A.1. Using comments
Configuration file comments are lines starting with //. Use this format to comment on the line:
Nodes
Node_Name, Node_ID, Protocol
// Main building Node
Test_A, 1, Modbus_RTU
Never place comments in the middle or at the end of lines e.g. this is NOT allowed:
Nodes
Node_Name, Node_ID, Protocol
Test_A, 1, Modbus_RTU // Main building Node
Appendix A.2. Using conditional process statements
The Client or Server sides of a configuration can be disabled using the following keywords:
Keyword Function
Ignore
all lines will be ignored after this statement until a process statement is encountered.
Process
causes lines after this statement to be processed again.
End
configuration stops here, ignoring all further lines.
Appendix A.2.1.
Disabling the Client side of a configuration:
// Set up the Modbus Server side
//
Data_Arrays
Data_Array_Name , Data_Format , Data_Array_Length
DA_DO_01
, Bit
, 1
Connections
Port , Baud , Parity , Data_Bits , Stop_Bits , Protocol
P1 , 9600 , None , 8
, 1
, Modbus_RTU
Nodes
Node_Name , Node_ID , Protocol
RTU_Srv_11 , 11
, Modbus_RTU
Map_Descriptors
Map_Descriptor_Name , Data_Array_Name , Data_Array_Offset , Function , Node_Name , Address , Length
SMD_DO1
, DA_DO_01
, 0
, Passive , RTU_Srv_11 , 00001 , 1
ignore
//=======================================================================