[r100]: / branches / i-campbell / mqttsparkplugb / mqttsparkplugb / SparkplugB / Structs / ExamplePayloadPools / svnobj  Maximize  Restore  History

Download this file

15 lines (14 with data), 2.7 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
 * You can either use these examples, or create your own Arrays of different length
 *)
TYPE ExamplePayloadPools :
STRUCT
	myMetricsPool : ARRAY [0..64] OF FB_PayloadMetric;
	myKeysPool : ARRAY [0..64] OF LinkedListWStringElement;
	myDataSetColumnsPool : ARRAY[0..64] OF LinkedListWStringElement; //Maybe combine with KeysPool?
	myDataSetTypesPool : ARRAY[0..64] OF FB_PayloadDataSetType;
	myRowsPool         : ARRAY [0..64] OF FB_PayloadRow;
	myElementsPool     : ARRAY [0..4096] OF FB_PayloadElement;
	myParametersPool   : ARRAY [0..64] OF FB_PayloadParameter;
	myBodyPool         : ARRAY [0..65535] OF BYTE;
END_STRUCT
END_TYPE