From 3d0d285f466b6dd025f4566b290198b9ac70d00a Mon Sep 17 00:00:00 2001
From: "m.marn" <m.marn@gsi.de>
Date: Fri, 22 Dec 2023 13:15:26 +0100
Subject: [PATCH] Add initial version of the integration testing class

---
 .../src/xml/test/AllTypesFESA.silecsdesign    |   10 +-
 .../xml/test/fesa/test_generateFesaDesign.py  |   12 +-
 .../generated_correct/AllTypesFESA.design     |    4 +-
 test/AllTypesFESA/.gitignore                  |   12 +
 test/AllTypesFESA/Makefile.specific           |   11 +
 test/AllTypesFESA/README.md                   |    4 +
 test/AllTypesFESA/copyDesigns.sh              |    6 +
 test/AllTypesFESA/src/AllTypesFESA.design     | 1745 +++++++++++++++++
 .../src/AllTypesFESA.silecsdesign             |  302 +++
 .../src/AllTypesFESA/Common/AllTypesFESA.cpp  | 1569 +++++++++++++++
 .../src/AllTypesFESA/Common/AllTypesFESA.h    |  152 ++
 .../AllTypesFESA/RealTime/RTDeviceClass.cpp   |   81 +
 .../src/AllTypesFESA/RealTime/RTDeviceClass.h |   28 +
 .../RealTime/StatusUpdateAction.cpp           |   71 +
 .../RealTime/StatusUpdateAction.h             |   24 +
 .../AllTypesFESA/Server/GetMyCBlockProp.cpp   |   73 +
 .../src/AllTypesFESA/Server/GetMyCBlockProp.h |   28 +
 .../AllTypesFESA/Server/GetMyROBlockProp.cpp  |   73 +
 .../AllTypesFESA/Server/GetMyROBlockProp.h    |   28 +
 .../AllTypesFESA/Server/GetMyRWBlockProp.cpp  |   76 +
 .../AllTypesFESA/Server/GetMyRWBlockProp.h    |   28 +
 .../AllTypesFESA/Server/ServerDeviceClass.cpp |   80 +
 .../AllTypesFESA/Server/ServerDeviceClass.h   |   28 +
 .../AllTypesFESA/Server/SetMyRWBlockProp.cpp  |   63 +
 .../AllTypesFESA/Server/SetMyRWBlockProp.h    |   26 +
 .../AllTypesFESA/Server/SetMyWOBlockProp.cpp  |   59 +
 .../AllTypesFESA/Server/SetMyWOBlockProp.h    |   26 +
 test/AllTypesFESA_DU/.gitignore               |   15 +
 test/AllTypesFESA_DU/Makefile.specific        |   19 +
 test/AllTypesFESA_DU/README.md                |    9 +
 test/AllTypesFESA_DU/hosts                    |    2 +
 .../src/AllTypesFESA_DU.deploy                |   32 +
 .../src/AllTypesFESA_DU.silecsdeploy          |   24 +
 .../AllTypesFESA_DU/RealTime/RTEquipment.cpp  |   26 +
 .../AllTypesFESA_DU/RealTime/RTEquipment.h    |   36 +
 .../Server/ServerEquipment.cpp                |   18 +
 .../AllTypesFESA_DU/Server/ServerEquipment.h  |   25 +
 .../DeviceData_AllTypesFESA_DU.instance       |  204 ++
 38 files changed, 5016 insertions(+), 13 deletions(-)
 create mode 100644 test/AllTypesFESA/.gitignore
 create mode 100644 test/AllTypesFESA/Makefile.specific
 create mode 100644 test/AllTypesFESA/README.md
 create mode 100755 test/AllTypesFESA/copyDesigns.sh
 create mode 100644 test/AllTypesFESA/src/AllTypesFESA.design
 create mode 100644 test/AllTypesFESA/src/AllTypesFESA.silecsdesign
 create mode 100644 test/AllTypesFESA/src/AllTypesFESA/Common/AllTypesFESA.cpp
 create mode 100644 test/AllTypesFESA/src/AllTypesFESA/Common/AllTypesFESA.h
 create mode 100644 test/AllTypesFESA/src/AllTypesFESA/RealTime/RTDeviceClass.cpp
 create mode 100644 test/AllTypesFESA/src/AllTypesFESA/RealTime/RTDeviceClass.h
 create mode 100644 test/AllTypesFESA/src/AllTypesFESA/RealTime/StatusUpdateAction.cpp
 create mode 100644 test/AllTypesFESA/src/AllTypesFESA/RealTime/StatusUpdateAction.h
 create mode 100644 test/AllTypesFESA/src/AllTypesFESA/Server/GetMyCBlockProp.cpp
 create mode 100644 test/AllTypesFESA/src/AllTypesFESA/Server/GetMyCBlockProp.h
 create mode 100644 test/AllTypesFESA/src/AllTypesFESA/Server/GetMyROBlockProp.cpp
 create mode 100644 test/AllTypesFESA/src/AllTypesFESA/Server/GetMyROBlockProp.h
 create mode 100644 test/AllTypesFESA/src/AllTypesFESA/Server/GetMyRWBlockProp.cpp
 create mode 100644 test/AllTypesFESA/src/AllTypesFESA/Server/GetMyRWBlockProp.h
 create mode 100644 test/AllTypesFESA/src/AllTypesFESA/Server/ServerDeviceClass.cpp
 create mode 100644 test/AllTypesFESA/src/AllTypesFESA/Server/ServerDeviceClass.h
 create mode 100644 test/AllTypesFESA/src/AllTypesFESA/Server/SetMyRWBlockProp.cpp
 create mode 100644 test/AllTypesFESA/src/AllTypesFESA/Server/SetMyRWBlockProp.h
 create mode 100644 test/AllTypesFESA/src/AllTypesFESA/Server/SetMyWOBlockProp.cpp
 create mode 100644 test/AllTypesFESA/src/AllTypesFESA/Server/SetMyWOBlockProp.h
 create mode 100644 test/AllTypesFESA_DU/.gitignore
 create mode 100644 test/AllTypesFESA_DU/Makefile.specific
 create mode 100644 test/AllTypesFESA_DU/README.md
 create mode 100644 test/AllTypesFESA_DU/hosts
 create mode 100644 test/AllTypesFESA_DU/src/AllTypesFESA_DU.deploy
 create mode 100644 test/AllTypesFESA_DU/src/AllTypesFESA_DU.silecsdeploy
 create mode 100644 test/AllTypesFESA_DU/src/AllTypesFESA_DU/RealTime/RTEquipment.cpp
 create mode 100644 test/AllTypesFESA_DU/src/AllTypesFESA_DU/RealTime/RTEquipment.h
 create mode 100644 test/AllTypesFESA_DU/src/AllTypesFESA_DU/Server/ServerEquipment.cpp
 create mode 100644 test/AllTypesFESA_DU/src/AllTypesFESA_DU/Server/ServerEquipment.h
 create mode 100644 test/AllTypesFESA_DU/src/test/vmla016/DeviceData_AllTypesFESA_DU.instance

diff --git a/silecs-codegen/src/xml/test/AllTypesFESA.silecsdesign b/silecs-codegen/src/xml/test/AllTypesFESA.silecsdesign
index 009fa31..11fd4aa 100644
--- a/silecs-codegen/src/xml/test/AllTypesFESA.silecsdesign
+++ b/silecs-codegen/src/xml/test/AllTypesFESA.silecsdesign
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<SILECS-Design xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" silecs-version="2.0.0" created="06/27/16" updated="06/27/16" xsi:noNamespaceSchemaLocation="/common/home/bel/schwinn/lnx/git/silecs-model/src/xml/DesignSchema.xsd">
+<SILECS-Design xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" silecs-version="3.0.0" created="06/27/16" updated="06/27/16" xsi:noNamespaceSchemaLocation="/home/cosylab/mmarn/lnx/workspace751/opensilecs/build/3.0.0/silecs-model/xml/DesignSchema.xsd">
 	<Information>
 		<Owner user-login="schwinn"/>
 		<Editor user-login="schwinn"/>
@@ -292,10 +292,10 @@
         </Configuration-Block>
         <custom-types>
             <enum name="TEST_ENUM">
-                <item access="RW" value="0" symbol="OK" />
-                <item access="RW" value="1" symbol="WARNING" />
-                <item access="RW" value="2" symbol="ERROR" />
-                <item access="RW" value="3" symbol="UNKNOWN" />
+                <item access="RW" value="0" symbol="OK"/>
+                <item access="RW" value="1" symbol="WARNING"/>
+                <item access="RW" value="2" symbol="ERROR"/>
+                <item access="RW" value="3" symbol="UNKNOWN"/>
             </enum>  
         </custom-types>
 	</SILECS-Class>
diff --git a/silecs-codegen/src/xml/test/fesa/test_generateFesaDesign.py b/silecs-codegen/src/xml/test/fesa/test_generateFesaDesign.py
index 3af7e9e..ffbeb5f 100644
--- a/silecs-codegen/src/xml/test/fesa/test_generateFesaDesign.py
+++ b/silecs-codegen/src/xml/test/fesa/test_generateFesaDesign.py
@@ -18,7 +18,7 @@ import unittest
 
 import fesa.fesa_7_3_0.generateFesaDesign
 
-fesa_version = "7.3.0"
+fesa_version = "7.5.0"
 
 import libxml2
 import unittest
@@ -57,13 +57,13 @@ class TestGenerateFesaDesign(unittest.TestCase):
 
     def test_fillXML_EmptyTemplate(self):
         fesaRoot = libxml2.parseFile("test/fesa/emptyTemplate.xml")
-        self.generator.fillXML(fesa_version, 'MyClass', fesaRoot, simpleSilecsDesignRoot, logTopics={'errorlog': True})
+        self.generator.fillXML(fesa_version, 'AllTypesFESA', fesaRoot, simpleSilecsDesignRoot, logTopics={'errorlog': True})
         self.assertTrue(fesaRoot.xpathEval('/equipment-model/events') is not None)
         self.assertTrue(fesaRoot.xpathEval('/equipment-model/scheduling-units') is not None)
 
     def test_fillXML_GSITemplate(self):
         fesaRoot = libxml2.parseFile("test/fesa/GSIClassTemplate.xml")
-        self.generator.fillXML(fesa_version, 'MyClass', fesaRoot, simpleSilecsDesignRoot, logTopics={'errorlog': True})
+        self.generator.fillXML(fesa_version, 'AllTypesFESA', fesaRoot, simpleSilecsDesignRoot, logTopics={'errorlog': True})
         self.assertTrue(fesaRoot.xpathEval('/equipment-model/events') is not None)
         self.assertTrue(fesaRoot.xpathEval('/equipment-model/scheduling-units') is not None)
 
@@ -85,15 +85,15 @@ class TestGenerateFesaDesign(unittest.TestCase):
         commandBlock = myRoot.xpathEval('/SILECS-Design/SILECS-Class/Command-Block')[0]
 
         commandBlock.setProp("name", "Init")
-        self.assertRaises(Exception, lambda: self.generator.fillXML(fesa_version, 'MyClass', fesaRoot, myRoot, logTopics={'errorlog': True}))
+        self.assertRaises(Exception, lambda: self.generator.fillXML(fesa_version, 'AllTypesFESA', fesaRoot, myRoot, logTopics={'errorlog': True}))
 
         commandBlock.setProp("name", "Reset")
-        self.assertRaises(Exception, lambda: self.generator.fillXML(fesa_version, 'MyClass', fesaRoot, myRoot, logTopics={'errorlog': True}))
+        self.assertRaises(Exception, lambda: self.generator.fillXML(fesa_version, 'AllTypesFESA', fesaRoot, myRoot, logTopics={'errorlog': True}))
 
     def testFillXML_AllTypes(self):
         fesaRoot = libxml2.parseFile("test/fesa/GSIClassTemplate.xml")
         silecsRoot = libxml2.parseFile("test/AllTypesFESA.silecsdesign")
-        fesaRoot = self.generator.fillXML(fesa_version, 'MyClass', fesaRoot, silecsRoot, logTopics={'errorlog': True})
+        fesaRoot = self.generator.fillXML(fesa_version, 'AllTypesFESA', fesaRoot, silecsRoot, logTopics={'errorlog': True})
         fesaNewDocPath = "test/generated_temp/AllTypesFESA.design"
         fesaCompareDocPath = "test/generated_correct/AllTypesFESA.design"
         with open(fesaNewDocPath, 'w') as fd:
diff --git a/silecs-codegen/src/xml/test/generated_correct/AllTypesFESA.design b/silecs-codegen/src/xml/test/generated_correct/AllTypesFESA.design
index 00b789a..7648de7 100644
--- a/silecs-codegen/src/xml/test/generated_correct/AllTypesFESA.design
+++ b/silecs-codegen/src/xml/test/generated_correct/AllTypesFESA.design
@@ -1,13 +1,13 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <equipment-model xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../design-gsi.xsd">
 	<information>
-	  	<class-name>MyClass</class-name>
+	  	<class-name>AllTypesFESA</class-name>
 		<class-major-version>0</class-major-version>
 		<class-minor-version>1</class-minor-version>
 		<class-tiny-version>0</class-tiny-version>
 		<type>Final</type>
 		<description>An empty design with GSI-specific standard properties</description>
-		<fesa-version>7.3.0</fesa-version>
+		<fesa-version>7.5.0</fesa-version>
 	</information>
 	<ownership>
 		<responsible name="ACO"/>
diff --git a/test/AllTypesFESA/.gitignore b/test/AllTypesFESA/.gitignore
new file mode 100644
index 0000000..6735055
--- /dev/null
+++ b/test/AllTypesFESA/.gitignore
@@ -0,0 +1,12 @@
+.cproject
+.project
+.settings/
+Makefile
+Makefile.dep
+Makefile.silecs
+bin/
+build/
+generated/
+precompiled/
+**/*.o
+**/*.backup
diff --git a/test/AllTypesFESA/Makefile.specific b/test/AllTypesFESA/Makefile.specific
new file mode 100644
index 0000000..78f4af3
--- /dev/null
+++ b/test/AllTypesFESA/Makefile.specific
@@ -0,0 +1,11 @@
+# Include SILECS makefile
+include Makefile.silecs
+# Additional compiler warning flags
+override WARNFLAGS += 
+
+# Additional compiler flags
+COMPILER_FLAGS += 
+LINKER_FLAGS += 
+
+# Additional headers (Custom.h Specific.h ...) which need to be installed
+EXTRA_HEADERS += 
diff --git a/test/AllTypesFESA/README.md b/test/AllTypesFESA/README.md
new file mode 100644
index 0000000..49d00c5
--- /dev/null
+++ b/test/AllTypesFESA/README.md
@@ -0,0 +1,4 @@
+# Usage
+
+Before you compile and synchronize the class make sure to run `copyDesigns.sh` which will take the latest silecsdesign and fesa design files and copy them to this FESA class project. After that the procedure to work with the class is the same as always.
+
diff --git a/test/AllTypesFESA/copyDesigns.sh b/test/AllTypesFESA/copyDesigns.sh
new file mode 100755
index 0000000..b53dbe7
--- /dev/null
+++ b/test/AllTypesFESA/copyDesigns.sh
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+SCRIPT_PATH=$(dirname $(readlink -f "$0"))
+
+cp $SCRIPT_PATH/../../silecs-codegen/src/xml/test/generated_correct/AllTypesFESA.design src/
+cp $SCRIPT_PATH/../../silecs-codegen/src/xml/test/AllTypesFESA.silecsdesign src/
diff --git a/test/AllTypesFESA/src/AllTypesFESA.design b/test/AllTypesFESA/src/AllTypesFESA.design
new file mode 100644
index 0000000..834e5df
--- /dev/null
+++ b/test/AllTypesFESA/src/AllTypesFESA.design
@@ -0,0 +1,1745 @@
+<?xml version="1.0" encoding="UTF-8"?><equipment-model xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="file:/opt/fesa/fesa-model-gsi/7.5.0/xml/design/design-gsi.xsd">
+	<information>
+	  	<class-name>AllTypesFESA</class-name>
+		<class-major-version>0</class-major-version>
+		<class-minor-version>1</class-minor-version>
+		<class-tiny-version>0</class-tiny-version>
+		<type>Final</type>
+		<description>An empty design with GSI-specific standard properties</description>
+		<fesa-version>7.5.0</fesa-version>
+	</information>
+	<ownership>
+		<responsible name="ACO"/>
+		<creator login="schwinn"/>
+	</ownership>
+        <interface>
+        <device-interface>
+            <setting>
+                <command-property id="_231221102304_0" multiplexed="false" name="MyWOBlockProp" visibility="development">
+                    <value-item direction="IN" id="_231221102304_14" name="WO_enum_fesa">
+                        <custom-type-array data-type-name-ref="TEST_ENUM">
+                            <dim>10</dim>
+                        </custom-type-array>
+                        <data-field-ref field-name-ref="WO_enum_fesa"/>
+                    </value-item>
+                    <value-item direction="IN" id="_231221102304_15" name="WO_dt_fesa">
+                        <array type="double">
+                            <dim>10</dim>
+                        </array>
+                        <data-field-ref field-name-ref="WO_dt_fesa"/>
+                    </value-item>
+                    <value-item direction="IN" id="_231221102304_16" name="WO_real_fesa">
+                        <array type="float">
+                            <dim>10</dim>
+                        </array>
+                        <data-field-ref field-name-ref="WO_real_fesa"/>
+                    </value-item>
+                    <value-item direction="IN" id="_231221102304_17" name="WO_dint_fesa">
+                        <array type="int32_t">
+                            <dim>10</dim>
+                        </array>
+                        <data-field-ref field-name-ref="WO_dint_fesa"/>
+                    </value-item>
+                    <value-item direction="IN" id="_231221102304_18" name="WO_int_fesa">
+                        <array type="int16_t">
+                            <dim>10</dim>
+                        </array>
+                        <data-field-ref field-name-ref="WO_int_fesa"/>
+                    </value-item>
+                    <value-item direction="IN" id="_231221102304_19" name="WO_dword_fesa">
+                        <array type="int64_t">
+                            <dim>10</dim>
+                        </array>
+                        <data-field-ref field-name-ref="WO_dword_fesa"/>
+                    </value-item>
+                    <value-item direction="IN" id="_231221102304_20" name="WO_word_fesa">
+                        <array type="int32_t">
+                            <dim>10</dim>
+                        </array>
+                        <data-field-ref field-name-ref="WO_word_fesa"/>
+                    </value-item>
+                    <value-item direction="IN" id="_231221102304_21" name="WO_byte_fesa">
+                        <array type="int16_t">
+                            <dim>10</dim>
+                        </array>
+                        <data-field-ref field-name-ref="WO_byte_fesa"/>
+                    </value-item>
+                    <value-item direction="IN" id="_231221102304_22" name="WO_char_fesa">
+                        <array type="int8_t">
+                            <dim>10</dim>
+                        </array>
+                        <data-field-ref field-name-ref="WO_char_fesa"/>
+                    </value-item>
+                    <value-item direction="IN" id="_231221102304_23" name="WO_date_fesa">
+                        <array type="double">
+                            <dim>10</dim>
+                        </array>
+                        <data-field-ref field-name-ref="WO_date_fesa"/>
+                    </value-item>
+                    <value-item direction="IN" id="_231221102304_24" name="WO_string_fesa">
+                        <array2D type="char">
+                            <dim1>10</dim1>
+                            <dim2>64</dim2>
+                        </array2D>
+                        <data-field-ref field-name-ref="WO_string_fesa"/>
+                    </value-item>
+                    <value-item direction="IN" id="_231221102304_25" name="WO_float32_fesa">
+                        <array type="float">
+                            <dim>10</dim>
+                        </array>
+                        <data-field-ref field-name-ref="WO_float32_fesa"/>
+                    </value-item>
+                    <value-item direction="IN" id="_231221102304_26" name="WO_uint32_fesa">
+                        <array type="int64_t">
+                            <dim>10</dim>
+                        </array>
+                        <data-field-ref field-name-ref="WO_uint32_fesa"/>
+                    </value-item>
+                    <value-item direction="IN" id="_231221102304_27" name="WO_int32_fesa">
+                        <array type="int32_t">
+                            <dim>10</dim>
+                        </array>
+                        <data-field-ref field-name-ref="WO_int32_fesa"/>
+                    </value-item>
+                    <value-item direction="IN" id="_231221102304_28" name="WO_uint16_fesa">
+                        <array type="int32_t">
+                            <dim>10</dim>
+                        </array>
+                        <data-field-ref field-name-ref="WO_uint16_fesa"/>
+                    </value-item>
+                    <value-item direction="IN" id="_231221102304_29" name="WO_int16_fesa">
+                        <array type="int16_t">
+                            <dim>10</dim>
+                        </array>
+                        <data-field-ref field-name-ref="WO_int16_fesa"/>
+                    </value-item>
+                    <value-item direction="IN" id="_231221102304_30" name="WO_uint8_fesa">
+                        <array type="int16_t">
+                            <dim>10</dim>
+                        </array>
+                        <data-field-ref field-name-ref="WO_uint8_fesa"/>
+                    </value-item>
+                    <value-item direction="IN" id="_231221102304_31" name="WO_int8">
+                        <array type="int8_t">
+                            <dim>10</dim>
+                        </array>
+                        <data-field-ref field-name-ref="WO_int8"/>
+                    </value-item>
+                    <set-action>
+                        <server-action-ref server-action-name-ref="SetMyWOBlockProp"/>
+                    </set-action>
+                </command-property>
+                <GSI-Init-Property id="_231221102304_1" multiplexed="false" name="Init" visibility="operational">
+                	<description>Control property, used to initialize the device with default values from the device instantiation file</description>
+                    <set-action partial-setting="true" transaction="true">
+                        <server-action-ref server-action-name-ref="InitSetAction"/>
+                    </set-action>
+                </GSI-Init-Property>
+                <GSI-Reset-Property id="_231221102304_2" multiplexed="false" name="Reset" visibility="operational">
+                	<description>Control property, used to reset the device while keeping the persistent data.</description>
+                    <set-action partial-setting="true" transaction="true">
+                        <server-action-ref server-action-name-ref="ResetSetAction"/>
+                    </set-action>
+                </GSI-Reset-Property>
+                <GSI-Setting-Property id="_231221102304_3" multiplexed="false" name="Setting" visibility="operational">
+                	<description>Used for setting hardware parameters for controlling the device.</description>
+                    <update-flag-item direction="OUT" id="_231221102304_32" name="updateFlags" optional="true">
+                       <builtin-type-scalar data-type-name-ref="NOTIFICATION_UPDATE"/>
+                    </update-flag-item>
+                    <cycle-name-item direction="OUT" id="_231221102304_33" name="cycleName" optional="true">
+                        <array type="char">
+                            <dim>32</dim>
+                        </array>
+                    </cycle-name-item>
+                    <set-action partial-setting="true" transaction="true">
+                        <server-action-ref server-action-name-ref="SettingSetAction"/>
+                    </set-action>
+                    <get-action>
+                        <server-action-ref server-action-name-ref="SettingGetAction"/>
+                    </get-action>
+                </GSI-Setting-Property>
+                <GSI-Setting-Property id="_231221102304_4" multiplexed="false" name="MyRWBlockProp" visibility="development">
+                    <value-item direction="INOUT" id="_231221102304_34" name="RW_enum_fesa">
+                        <custom-type-scalar data-type-name-ref="TEST_ENUM"/>
+                        <data-field-ref field-name-ref="RW_enum_fesa"/>
+                    </value-item>
+                    <value-item direction="INOUT" id="_231221102304_35" name="RW2_dt_fesa">
+                        <array2D type="double">
+                            <dim1>2</dim1>
+                            <dim2>2</dim2>
+                        </array2D>
+                        <data-field-ref field-name-ref="RW2_dt_fesa"/>
+                    </value-item>
+                    <value-item direction="INOUT" id="_231221102304_36" name="RW2_real_fesa">
+                        <array2D type="float">
+                            <dim1>2</dim1>
+                            <dim2>2</dim2>
+                        </array2D>
+                        <data-field-ref field-name-ref="RW2_real_fesa"/>
+                    </value-item>
+                    <value-item direction="INOUT" id="_231221102304_37" name="RW2_dint_fesa">
+                        <array2D type="int32_t">
+                            <dim1>2</dim1>
+                            <dim2>2</dim2>
+                        </array2D>
+                        <data-field-ref field-name-ref="RW2_dint_fesa"/>
+                    </value-item>
+                    <value-item direction="INOUT" id="_231221102304_38" name="RW2_int_fesa">
+                        <array2D type="int16_t">
+                            <dim1>2</dim1>
+                            <dim2>2</dim2>
+                        </array2D>
+                        <data-field-ref field-name-ref="RW2_int_fesa"/>
+                    </value-item>
+                    <value-item direction="INOUT" id="_231221102304_39" name="RW2_dword_fesa">
+                        <array2D type="int64_t">
+                            <dim1>2</dim1>
+                            <dim2>2</dim2>
+                        </array2D>
+                        <data-field-ref field-name-ref="RW2_dword_fesa"/>
+                    </value-item>
+                    <value-item direction="INOUT" id="_231221102304_40" name="RW2_word_fesa">
+                        <array2D type="int32_t">
+                            <dim1>2</dim1>
+                            <dim2>2</dim2>
+                        </array2D>
+                        <data-field-ref field-name-ref="RW2_word_fesa"/>
+                    </value-item>
+                    <value-item direction="INOUT" id="_231221102304_41" name="RW2_byte_fesa">
+                        <array2D type="int16_t">
+                            <dim1>2</dim1>
+                            <dim2>2</dim2>
+                        </array2D>
+                        <data-field-ref field-name-ref="RW2_byte_fesa"/>
+                    </value-item>
+                    <value-item direction="INOUT" id="_231221102304_42" name="RW2_char_fesa">
+                        <array2D type="int8_t">
+                            <dim1>2</dim1>
+                            <dim2>2</dim2>
+                        </array2D>
+                        <data-field-ref field-name-ref="RW2_char_fesa"/>
+                    </value-item>
+                    <value-item direction="INOUT" id="_231221102304_43" name="RW2_date_fesa">
+                        <array2D type="double">
+                            <dim1>2</dim1>
+                            <dim2>2</dim2>
+                        </array2D>
+                        <data-field-ref field-name-ref="RW2_date_fesa"/>
+                    </value-item>
+                    <value-item direction="INOUT" id="_231221102304_44" name="RW2_float32_fesa">
+                        <array2D type="float">
+                            <dim1>2</dim1>
+                            <dim2>2</dim2>
+                        </array2D>
+                        <data-field-ref field-name-ref="RW2_float32_fesa"/>
+                    </value-item>
+                    <value-item direction="INOUT" id="_231221102304_45" name="RW2_uint32_fesa">
+                        <array2D type="int64_t">
+                            <dim1>2</dim1>
+                            <dim2>2</dim2>
+                        </array2D>
+                        <data-field-ref field-name-ref="RW2_uint32_fesa"/>
+                    </value-item>
+                    <value-item direction="INOUT" id="_231221102304_46" name="RW2_int32_fesa">
+                        <array2D type="int32_t">
+                            <dim1>2</dim1>
+                            <dim2>2</dim2>
+                        </array2D>
+                        <data-field-ref field-name-ref="RW2_int32_fesa"/>
+                    </value-item>
+                    <value-item direction="INOUT" id="_231221102304_47" name="RW2_uint16_fesa">
+                        <array2D type="int32_t">
+                            <dim1>2</dim1>
+                            <dim2>2</dim2>
+                        </array2D>
+                        <data-field-ref field-name-ref="RW2_uint16_fesa"/>
+                    </value-item>
+                    <value-item direction="INOUT" id="_231221102304_48" name="RW2_int16_fesa">
+                        <array2D type="int16_t">
+                            <dim1>2</dim1>
+                            <dim2>2</dim2>
+                        </array2D>
+                        <data-field-ref field-name-ref="RW2_int16_fesa"/>
+                    </value-item>
+                    <value-item direction="INOUT" id="_231221102304_49" name="RW2_uint8_fesa">
+                        <array2D type="int16_t">
+                            <dim1>2</dim1>
+                            <dim2>2</dim2>
+                        </array2D>
+                        <data-field-ref field-name-ref="RW2_uint8_fesa"/>
+                    </value-item>
+                    <value-item direction="INOUT" id="_231221102304_50" name="RW2_int8">
+                        <array2D type="int8_t">
+                            <dim1>2</dim1>
+                            <dim2>2</dim2>
+                        </array2D>
+                        <data-field-ref field-name-ref="RW2_int8"/>
+                    </value-item>
+                    <value-item direction="INOUT" id="_231221102304_51" name="RW_dt_fesa">
+                        <scalar type="double"/>
+                        <data-field-ref field-name-ref="RW_dt_fesa"/>
+                    </value-item>
+                    <value-item direction="INOUT" id="_231221102304_52" name="RW_real_fesa">
+                        <scalar type="float"/>
+                        <data-field-ref field-name-ref="RW_real_fesa"/>
+                    </value-item>
+                    <value-item direction="INOUT" id="_231221102304_53" name="RW_dint_fesa">
+                        <scalar type="int32_t"/>
+                        <data-field-ref field-name-ref="RW_dint_fesa"/>
+                    </value-item>
+                    <value-item direction="INOUT" id="_231221102304_54" name="RW_int_fesa">
+                        <scalar type="int16_t"/>
+                        <data-field-ref field-name-ref="RW_int_fesa"/>
+                    </value-item>
+                    <value-item direction="INOUT" id="_231221102304_55" name="RW_dword_fesa">
+                        <scalar type="int64_t"/>
+                        <data-field-ref field-name-ref="RW_dword_fesa"/>
+                    </value-item>
+                    <value-item direction="INOUT" id="_231221102304_56" name="RW_word_fesa">
+                        <scalar type="int32_t"/>
+                        <data-field-ref field-name-ref="RW_word_fesa"/>
+                    </value-item>
+                    <value-item direction="INOUT" id="_231221102304_57" name="RW_byte_fesa">
+                        <scalar type="int16_t"/>
+                        <data-field-ref field-name-ref="RW_byte_fesa"/>
+                    </value-item>
+                    <value-item direction="INOUT" id="_231221102304_58" name="RW_char_fesa">
+                        <scalar type="int8_t"/>
+                        <data-field-ref field-name-ref="RW_char_fesa"/>
+                    </value-item>
+                    <value-item direction="INOUT" id="_231221102304_59" name="RW_date_fesa">
+                        <scalar type="double"/>
+                        <data-field-ref field-name-ref="RW_date_fesa"/>
+                    </value-item>
+                    <value-item direction="INOUT" id="_231221102304_60" name="RW_string_fesa">
+                        <array type="char">
+                            <dim>64</dim>
+                        </array>
+                        <data-field-ref field-name-ref="RW_string_fesa"/>
+                    </value-item>
+                    <value-item direction="INOUT" id="_231221102304_61" name="RW_float32_fesa">
+                        <scalar type="float"/>
+                        <data-field-ref field-name-ref="RW_float32_fesa"/>
+                    </value-item>
+                    <value-item direction="INOUT" id="_231221102304_62" name="RW_uint32_fesa">
+                        <scalar type="int64_t"/>
+                        <data-field-ref field-name-ref="RW_uint32_fesa"/>
+                    </value-item>
+                    <value-item direction="INOUT" id="_231221102304_63" name="RW_int32_fesa">
+                        <scalar type="int32_t"/>
+                        <data-field-ref field-name-ref="RW_int32_fesa"/>
+                    </value-item>
+                    <value-item direction="INOUT" id="_231221102304_64" name="RW_uint16_fesa">
+                        <scalar type="int32_t"/>
+                        <data-field-ref field-name-ref="RW_uint16_fesa"/>
+                    </value-item>
+                    <value-item direction="INOUT" id="_231221102304_65" name="RW_int16_fesa">
+                        <scalar type="int16_t"/>
+                        <data-field-ref field-name-ref="RW_int16_fesa"/>
+                    </value-item>
+                    <value-item direction="INOUT" id="_231221102304_66" name="RW_uint8_fesa">
+                        <scalar type="int16_t"/>
+                        <data-field-ref field-name-ref="RW_uint8_fesa"/>
+                    </value-item>
+                    <value-item direction="INOUT" id="_231221102304_67" name="RW_int8">
+                        <scalar type="int8_t"/>
+                        <data-field-ref field-name-ref="RW_int8"/>
+                    </value-item>
+                    <update-flag-item direction="OUT" id="_231221102304_68" name="updateFlags" optional="true">
+                        <builtin-type-scalar data-type-name-ref="NOTIFICATION_UPDATE"/>
+                    </update-flag-item>
+                    <cycle-name-item direction="OUT" id="_231221102304_69" name="cycleName" optional="true">
+                        <array type="char">
+                            <dim>32</dim>
+                        </array>
+                    </cycle-name-item>
+                    <set-action>
+                        <server-action-ref server-action-name-ref="SetMyRWBlockProp"/>
+                    </set-action>
+                    <get-action>
+                        <server-action-ref server-action-name-ref="GetMyRWBlockProp"/>
+                    </get-action>
+                </GSI-Setting-Property>
+                <GSI-Power-Property id="_231221102304_5" multiplexed="false" name="Power" visibility="operational">
+                    <description>Used to turn the power of a device on or off.</description>
+                    <update-flag-item direction="OUT" id="_231221102304_70" name="updateFlags" optional="true">
+						<builtin-type-scalar data-type-name-ref="NOTIFICATION_UPDATE"/>
+                    </update-flag-item>
+                    <cycle-name-item direction="OUT" id="_231221102304_71" name="cycleName" optional="true">
+                        <array type="char">
+                            <dim>32</dim>
+                        </array>
+                    </cycle-name-item>
+                    <set-action partial-setting="true" transaction="true">
+                        <server-action-ref server-action-name-ref="PowerSetAction"/>
+                    </set-action>
+                    <get-action>
+                        <server-action-ref server-action-name-ref="PowerGetAction"/>
+                    </get-action>
+                    <power-item direction="INOUT" id="_231221102304_72" name="power">
+                        <custom-type-scalar data-type-name-ref="DEVICE_POWER"/>
+                        
+                        <data-field-ref field-name-ref="power"/>
+                    </power-item>
+                </GSI-Power-Property>
+            </setting>
+            <acquisition>
+                <GSI-Status-Property cycle-bound="false" id="_231221102304_6" name="Status" on-change="true" subscribable="true" visibility="operational">
+                    <description>Used to display the (cycle independent) overall status of the device.</description>
+					<description>Detailed status information may be additionally added to this property.</description>
+                    <acq-stamp-item direction="OUT" id="_231221102304_73" name="acqStamp">
+                        <scalar type="int64_t"/>
+                    </acq-stamp-item>
+                    <update-flag-item direction="OUT" id="_231221102304_74" name="updateFlags" optional="true">
+                        <builtin-type-scalar data-type-name-ref="NOTIFICATION_UPDATE"/>
+                    </update-flag-item>
+                    <cycle-name-item direction="OUT" id="_231221102304_75" name="cycleName" optional="true">
+                        <array type="char">
+                            <dim>32</dim>
+                        </array>
+                    </cycle-name-item>
+                    <cycle-stamp-item direction="OUT" id="_231221102304_76" name="cycleStamp" optional="true">
+                        <scalar type="int64_t"/>
+                    </cycle-stamp-item>
+                    <get-action>
+                        <server-action-ref server-action-name-ref="StatusGetAction"/>
+                    </get-action>
+                    <status-item direction="OUT" id="_231221102304_77" name="status">
+                        <custom-type-scalar data-type-name-ref="DEVICE_STATUS"/>
+                        
+                        <data-field-ref field-name-ref="status"/>
+                    </status-item>
+                    <detailed-status-item direction="OUT" id="_231221102304_78" name="detailedStatus">
+                    	<description>Detailed status should consist of an array of boolean values considered as detailed status information as well as a
+corresponding string array containing keys to illustrate the meaning of the detailed status information.</description>
+                        <array type="bool">
+                            <custom-constant-dim constant-name-ref="DETAILED_STATUS_SIZE"/>
+                        </array>
+                        <data-field-ref field-name-ref="detailedStatus"/>
+                    </detailed-status-item>
+                    <detailed-status-labels-item direction="OUT" id="_231221102304_79" name="detailedStatus_labels">
+                    	<description>Labels of detailed status bits.</description>
+                        <array2D type="char">
+                            <custom-constant-dim1 constant-name-ref="DETAILED_STATUS_SIZE"/>
+                            <custom-constant-dim2 constant-name-ref="MAX_DETAILED_STATUS_LABEL_LENGTH"/>
+                        </array2D>
+                        <data-field-ref field-name-ref="detailedStatus_labels"/>
+                    </detailed-status-labels-item>
+                    <detailed-status-severity-item direction="OUT" id="_231221102304_80" name="detailedStatus_severity">
+                    	<description>Severities of the detailed status bits</description>
+                        <custom-type-array data-type-name-ref="DETAILED_STATUS_SEVERITY">
+                            <custom-constant-dim constant-name-ref="DETAILED_STATUS_SIZE"/>
+                        </custom-type-array>
+                        <data-field-ref field-name-ref="detailedStatus_severity"/>
+                    </detailed-status-severity-item>
+                    <powerState-item direction="OUT" id="_231221102304_81" name="powerState">
+                    	<description>Power state of the device (ON, OFF)</description>
+                        <custom-type-scalar data-type-name-ref="DEVICE_POWER_STATE"/>
+                        
+                        <data-field-ref field-name-ref="powerState"/>
+                    </powerState-item>
+                    <control-item direction="OUT" id="_231221102304_82" name="control">
+                        <custom-type-scalar data-type-name-ref="DEVICE_CONTROL"/>
+                        <data-field-ref field-name-ref="control"/>
+                    </control-item>
+                    <interlock-item direction="OUT" id="_231221102304_83" name="interlock">
+                    	<description>Interlock state of the device</description>
+                        <scalar type="bool"/>
+                        <data-field-ref field-name-ref="interlock"/>
+                    </interlock-item>
+                    <opReady-item direction="OUT" id="_231221102304_84" name="opReady">
+                    	<description>Contains the devices state regarding operation</description>
+                        <scalar type="bool"/>
+                        <data-field-ref field-name-ref="opReady"/>
+                    </opReady-item>
+                    <modulesReady-item direction="OUT" id="_231221102304_85" name="modulesReady">
+                    	<description>Contains the devices module state</description>
+                        <scalar type="bool"/>
+                        <data-field-ref field-name-ref="modulesReady"/>
+                    </modulesReady-item>
+                    <error_collection-item direction="OUT" id="_231221102304_86">
+                        <error_codes direction="OUT" name="error_codes">
+                            <array type="int32_t">
+                                <custom-constant-dim constant-name-ref="MAX_NUMBER_OF_ERROR_MESSAGES"/>
+                            </array>
+                        </error_codes>
+                        <error_messages direction="OUT" name="error_messages">
+                            <array2D type="char">
+                                <custom-constant-dim1 constant-name-ref="MAX_NUMBER_OF_ERROR_MESSAGES"/>
+                                <custom-constant-dim2 constant-name-ref="MAX_ERROR_MESSAGE_LENGTH"/>
+                            </array2D>
+                        </error_messages>
+                        <error_timestamps direction="OUT" name="error_timestamps">
+                            <array type="int64_t">
+                                <custom-constant-dim constant-name-ref="MAX_NUMBER_OF_ERROR_MESSAGES"/>
+                            </array>
+                        </error_timestamps>
+                        <error_cycle_names direction="OUT" name="error_cycle_names">
+                            <array2D type="char">
+                                <custom-constant-dim1 constant-name-ref="MAX_NUMBER_OF_ERROR_MESSAGES"/>
+                                <custom-constant-dim2 constant-name-ref="MAX_ERROR_MESSAGE_LENGTH"/>
+                            </array2D>
+                        </error_cycle_names>
+                        <error_collection-field-ref field-name-ref="error_collection"/>
+                    </error_collection-item>
+                </GSI-Status-Property>
+                <GSI-ModuleStatus-Property cycle-bound="false" id="_231221102304_7" name="ModuleStatus" subscribable="true" visibility="operational">
+                	<description>Gives detailed information on the state of 3rd party hardware and software components which are required to operate the device.</description>
+                	<acq-stamp-item direction="OUT" id="_231221102304_87" name="acqStamp">
+                		<scalar type="int64_t"/>
+                	</acq-stamp-item>
+                	<update-flag-item direction="OUT" id="_231221102304_88" name="updateFlags" optional="true">
+                		<builtin-type-scalar data-type-name-ref="NOTIFICATION_UPDATE"/>
+                	</update-flag-item>
+                	<cycle-name-item direction="OUT" id="_231221102304_89" name="cycleName" optional="true">
+                		<array type="char">
+                			<dim>32</dim>
+                		</array>
+                	</cycle-name-item>
+                	<cycle-stamp-item direction="OUT" id="_231221102304_90" name="cycleStamp" optional="true">
+                		<scalar type="int64_t"/>
+                	</cycle-stamp-item>
+                	<get-action>
+                		<server-action-ref server-action-name-ref="ModuleStatusGetAction"/>
+                	</get-action>
+                	<module-status-item direction="OUT" id="_231221102304_91" name="moduleStatus">
+                		<custom-type-array data-type-name-ref="MODULE_STATUS">
+                			<custom-constant-dim constant-name-ref="MODULE_STATUS_SIZE"/>
+                		</custom-type-array>
+                		<data-field-ref field-name-ref="moduleStatus"/>
+                	</module-status-item>
+                	<module-status-labels-item direction="OUT" id="_231221102304_92" name="moduleStatus_labels">
+                		<array2D type="char">
+                			<custom-constant-dim1 constant-name-ref="MODULE_STATUS_SIZE"/>
+                			<custom-constant-dim2 constant-name-ref="MAX_MODULE_STATUS_LABEL_LENGTH"/>
+                		</array2D>
+                		<data-field-ref field-name-ref="moduleStatus_labels"/>
+                	</module-status-labels-item>
+                </GSI-ModuleStatus-Property>
+                <GSI-Acquisition-Property cycle-bound="true" id="_231221102304_8" name="Acquisition" on-change="true" subscribable="true" visibility="operational">
+                    <description>Used for returning acquisition data which is retrieved from the hardware.</description>
+                    <acq-stamp-item direction="OUT" id="_231221102304_93" name="acqStamp">
+                        <scalar type="int64_t"/>
+                    </acq-stamp-item>
+                    <update-flag-item direction="OUT" id="_231221102304_94" name="updateFlags" optional="true">
+                        <builtin-type-scalar data-type-name-ref="NOTIFICATION_UPDATE"/>
+                    </update-flag-item>
+                    <cycle-name-item direction="OUT" id="_231221102304_95" name="cycleName" optional="true">
+                        <array type="char">
+                            <dim>32</dim>
+                        </array>
+                    </cycle-name-item>
+                    <cycle-stamp-item direction="OUT" id="_231221102304_96" name="cycleStamp" optional="true">
+                        <scalar type="int64_t"/>
+                    </cycle-stamp-item>
+                    <get-action>
+                        <server-action-ref server-action-name-ref="AcquisitionGetAction"/>
+                    </get-action>
+                    <acquisition-context-item direction="OUT" id="_231221102304_97">
+                        <processIndex direction="OUT" name="processIndex">
+                            <scalar type="int32_t"/>
+                        </processIndex>
+                        <sequenceIndex direction="OUT" name="sequenceIndex">
+                            <scalar type="int32_t"/>
+                        </sequenceIndex>
+                        <chainIndex direction="OUT" name="chainIndex">
+                            <scalar type="int32_t"/>
+                        </chainIndex>
+                        <eventNumber direction="OUT" name="eventNumber">
+                            <scalar type="int32_t"/>
+                        </eventNumber>
+                        <timingGroupID direction="OUT" name="timingGroupID">
+                            <scalar type="int32_t"/>
+                        </timingGroupID>
+                        <acquisitionStamp direction="OUT" name="acquisitionStamp">
+                            <scalar type="int64_t"/>
+                        </acquisitionStamp>
+                        <eventStamp direction="OUT" name="eventStamp">
+                            <scalar type="int64_t"/>
+                        </eventStamp>
+                        <processStartStamp direction="OUT" name="processStartStamp">
+                            <scalar type="int64_t"/>
+                        </processStartStamp>
+                        <sequenceStartStamp direction="OUT" name="sequenceStartStamp">
+                            <scalar type="int64_t"/>
+                        </sequenceStartStamp>
+                        <chainStartStamp direction="OUT" name="chainStartStamp">
+                            <scalar type="int64_t"/>
+                        </chainStartStamp>
+                        <acquisition-context-field-ref field-name-ref="acquisitionContext"/>
+                    </acquisition-context-item>
+                </GSI-Acquisition-Property>
+                <GSI-Acquisition-Property cycle-bound="false" id="_231221102304_9" name="MyROBlockProp" on-change="true" subscribable="true" visibility="development">
+                    <value-item direction="OUT" id="_231221102304_98" name="RO_enum_fesa">
+                        <custom-type-scalar data-type-name-ref="TEST_ENUM"/>
+                        <data-field-ref field-name-ref="RO_enum_fesa"/>
+                    </value-item>
+                    <value-item direction="OUT" id="_231221102304_99" name="RO_dt_fesa">
+                        <scalar type="double"/>
+                        <data-field-ref field-name-ref="RO_dt_fesa"/>
+                    </value-item>
+                    <value-item direction="OUT" id="_231221102304_100" name="RO_real_fesa">
+                        <scalar type="float"/>
+                        <data-field-ref field-name-ref="RO_real_fesa"/>
+                    </value-item>
+                    <value-item direction="OUT" id="_231221102304_101" name="RO_dint_fesa">
+                        <scalar type="int32_t"/>
+                        <data-field-ref field-name-ref="RO_dint_fesa"/>
+                    </value-item>
+                    <value-item direction="OUT" id="_231221102304_102" name="RO_int_fesa">
+                        <scalar type="int16_t"/>
+                        <data-field-ref field-name-ref="RO_int_fesa"/>
+                    </value-item>
+                    <value-item direction="OUT" id="_231221102304_103" name="RO_dword_fesa">
+                        <scalar type="int64_t"/>
+                        <data-field-ref field-name-ref="RO_dword_fesa"/>
+                    </value-item>
+                    <value-item direction="OUT" id="_231221102304_104" name="RO_word_fesa">
+                        <scalar type="int32_t"/>
+                        <data-field-ref field-name-ref="RO_word_fesa"/>
+                    </value-item>
+                    <value-item direction="OUT" id="_231221102304_105" name="RO_byte_fesa">
+                        <scalar type="int16_t"/>
+                        <data-field-ref field-name-ref="RO_byte_fesa"/>
+                    </value-item>
+                    <value-item direction="OUT" id="_231221102304_106" name="RO_char_fesa">
+                        <scalar type="int8_t"/>
+                        <data-field-ref field-name-ref="RO_char_fesa"/>
+                    </value-item>
+                    <value-item direction="OUT" id="_231221102304_107" name="RO_date_fesa">
+                        <scalar type="double"/>
+                        <data-field-ref field-name-ref="RO_date_fesa"/>
+                    </value-item>
+                    <value-item direction="OUT" id="_231221102304_108" name="RO_string_fesa">
+                        <array type="char">
+                            <dim>64</dim>
+                        </array>
+                        <data-field-ref field-name-ref="RO_string_fesa"/>
+                    </value-item>
+                    <value-item direction="OUT" id="_231221102304_109" name="RO_float32_fesa">
+                        <scalar type="float"/>
+                        <data-field-ref field-name-ref="RO_float32_fesa"/>
+                    </value-item>
+                    <value-item direction="OUT" id="_231221102304_110" name="RO_uint32_fesa">
+                        <scalar type="int64_t"/>
+                        <data-field-ref field-name-ref="RO_uint32_fesa"/>
+                    </value-item>
+                    <value-item direction="OUT" id="_231221102304_111" name="RO_int32_fesa">
+                        <scalar type="int32_t"/>
+                        <data-field-ref field-name-ref="RO_int32_fesa"/>
+                    </value-item>
+                    <value-item direction="OUT" id="_231221102304_112" name="RO_uint16_fesa">
+                        <scalar type="int32_t"/>
+                        <data-field-ref field-name-ref="RO_uint16_fesa"/>
+                    </value-item>
+                    <value-item direction="OUT" id="_231221102304_113" name="RO_int16_fesa">
+                        <scalar type="int16_t"/>
+                        <data-field-ref field-name-ref="RO_int16_fesa"/>
+                    </value-item>
+                    <value-item direction="OUT" id="_231221102304_114" name="RO_uint8_fesa">
+                        <scalar type="int16_t"/>
+                        <data-field-ref field-name-ref="RO_uint8_fesa"/>
+                    </value-item>
+                    <value-item direction="OUT" id="_231221102304_115" name="RO_int8">
+                        <scalar type="int8_t"/>
+                        <data-field-ref field-name-ref="RO_int8"/>
+                    </value-item>
+                    <acq-stamp-item direction="OUT" id="_231221102304_116" name="acqStamp">
+                        <scalar type="int64_t"/>
+                    </acq-stamp-item>
+                    <update-flag-item direction="OUT" id="_231221102304_117" name="updateFlags" optional="true">
+                        <builtin-type-scalar data-type-name-ref="NOTIFICATION_UPDATE"/>
+                    </update-flag-item>
+                    <cycle-name-item direction="OUT" id="_231221102304_118" name="cycleName" optional="true">
+                        <array type="char">
+                            <dim>32</dim>
+                        </array>
+                    </cycle-name-item>
+                    <cycle-stamp-item direction="OUT" id="_231221102304_119" name="cycleStamp" optional="true">
+                        <scalar type="int64_t"/>
+                    </cycle-stamp-item>
+                    <get-action>
+                        <server-action-ref server-action-name-ref="GetMyROBlockProp"/>
+                    </get-action>
+                    <acquisition-context-item direction="OUT" id="_231221102304_120">
+                        <processIndex direction="OUT" name="processIndex">
+                            <scalar type="int32_t"/>
+                        </processIndex>
+                        <sequenceIndex direction="OUT" name="sequenceIndex">
+                            <scalar type="int32_t"/>
+                        </sequenceIndex>
+                        <chainIndex direction="OUT" name="chainIndex">
+                            <scalar type="int32_t"/>
+                        </chainIndex>
+                        <eventNumber direction="OUT" name="eventNumber">
+                            <scalar type="int32_t"/>
+                        </eventNumber>
+                        <timingGroupID direction="OUT" name="timingGroupID">
+                            <scalar type="int32_t"/>
+                        </timingGroupID>
+                        <acquisitionStamp direction="OUT" name="acquisitionStamp">
+                            <scalar type="int64_t"/>
+                        </acquisitionStamp>
+                        <eventStamp direction="OUT" name="eventStamp">
+                            <scalar type="int64_t"/>
+                        </eventStamp>
+                        <processStartStamp direction="OUT" name="processStartStamp">
+                            <scalar type="int64_t"/>
+                        </processStartStamp>
+                        <sequenceStartStamp direction="OUT" name="sequenceStartStamp">
+                            <scalar type="int64_t"/>
+                        </sequenceStartStamp>
+                        <chainStartStamp direction="OUT" name="chainStartStamp">
+                            <scalar type="int64_t"/>
+                        </chainStartStamp>
+                        <acquisition-context-field-ref field-name-ref="acquisitionContext"/>
+                    </acquisition-context-item>
+                </GSI-Acquisition-Property>
+                <GSI-Acquisition-Property cycle-bound="false" id="_231221102304_10" name="MyCBlockProp" on-change="true" subscribable="true" visibility="development">
+                    <value-item direction="OUT" id="_231221102304_121" name="C_dt_fesa">
+                        <array2D type="double">
+                            <dim1>2</dim1>
+                            <dim2>2</dim2>
+                        </array2D>
+                        <data-field-ref field-name-ref="C_dt_fesa"/>
+                    </value-item>
+                    <value-item direction="OUT" id="_231221102304_122" name="C_real_fesa">
+                        <array2D type="float">
+                            <dim1>2</dim1>
+                            <dim2>2</dim2>
+                        </array2D>
+                        <data-field-ref field-name-ref="C_real_fesa"/>
+                    </value-item>
+                    <value-item direction="OUT" id="_231221102304_123" name="C_dint_fesa">
+                        <array2D type="int32_t">
+                            <dim1>2</dim1>
+                            <dim2>2</dim2>
+                        </array2D>
+                        <data-field-ref field-name-ref="C_dint_fesa"/>
+                    </value-item>
+                    <value-item direction="OUT" id="_231221102304_124" name="C_int_fesa">
+                        <array2D type="int16_t">
+                            <dim1>2</dim1>
+                            <dim2>2</dim2>
+                        </array2D>
+                        <data-field-ref field-name-ref="C_int_fesa"/>
+                    </value-item>
+                    <value-item direction="OUT" id="_231221102304_125" name="C_dword_fesa">
+                        <array2D type="int64_t">
+                            <dim1>2</dim1>
+                            <dim2>2</dim2>
+                        </array2D>
+                        <data-field-ref field-name-ref="C_dword_fesa"/>
+                    </value-item>
+                    <value-item direction="OUT" id="_231221102304_126" name="C_word_fesa">
+                        <array2D type="int32_t">
+                            <dim1>2</dim1>
+                            <dim2>2</dim2>
+                        </array2D>
+                        <data-field-ref field-name-ref="C_word_fesa"/>
+                    </value-item>
+                    <value-item direction="OUT" id="_231221102304_127" name="C_byte_fesa">
+                        <array2D type="int16_t">
+                            <dim1>2</dim1>
+                            <dim2>2</dim2>
+                        </array2D>
+                        <data-field-ref field-name-ref="C_byte_fesa"/>
+                    </value-item>
+                    <value-item direction="OUT" id="_231221102304_128" name="C_char_fesa">
+                        <array2D type="int8_t">
+                            <dim1>2</dim1>
+                            <dim2>2</dim2>
+                        </array2D>
+                        <data-field-ref field-name-ref="C_char_fesa"/>
+                    </value-item>
+                    <value-item direction="OUT" id="_231221102304_129" name="C_date_fesa">
+                        <array2D type="double">
+                            <dim1>2</dim1>
+                            <dim2>2</dim2>
+                        </array2D>
+                        <data-field-ref field-name-ref="C_date_fesa"/>
+                    </value-item>
+                    <value-item direction="OUT" id="_231221102304_130" name="C_float32_fesa">
+                        <array2D type="float">
+                            <dim1>2</dim1>
+                            <dim2>2</dim2>
+                        </array2D>
+                        <data-field-ref field-name-ref="C_float32_fesa"/>
+                    </value-item>
+                    <value-item direction="OUT" id="_231221102304_131" name="C_uint32_fesa">
+                        <array2D type="int64_t">
+                            <dim1>2</dim1>
+                            <dim2>2</dim2>
+                        </array2D>
+                        <data-field-ref field-name-ref="C_uint32_fesa"/>
+                    </value-item>
+                    <value-item direction="OUT" id="_231221102304_132" name="C_int32_fesa">
+                        <array2D type="int32_t">
+                            <dim1>2</dim1>
+                            <dim2>2</dim2>
+                        </array2D>
+                        <data-field-ref field-name-ref="C_int32_fesa"/>
+                    </value-item>
+                    <value-item direction="OUT" id="_231221102304_133" name="C_uint16_fesa">
+                        <array2D type="int32_t">
+                            <dim1>2</dim1>
+                            <dim2>2</dim2>
+                        </array2D>
+                        <data-field-ref field-name-ref="C_uint16_fesa"/>
+                    </value-item>
+                    <value-item direction="OUT" id="_231221102304_134" name="C_int16_fesa">
+                        <array2D type="int16_t">
+                            <dim1>2</dim1>
+                            <dim2>2</dim2>
+                        </array2D>
+                        <data-field-ref field-name-ref="C_int16_fesa"/>
+                    </value-item>
+                    <value-item direction="OUT" id="_231221102304_135" name="C_uint8_fesa">
+                        <array2D type="int16_t">
+                            <dim1>2</dim1>
+                            <dim2>2</dim2>
+                        </array2D>
+                        <data-field-ref field-name-ref="C_uint8_fesa"/>
+                    </value-item>
+                    <value-item direction="OUT" id="_231221102304_136" name="C_int8">
+                        <array2D type="int8_t">
+                            <dim1>2</dim1>
+                            <dim2>2</dim2>
+                        </array2D>
+                        <data-field-ref field-name-ref="C_int8"/>
+                    </value-item>
+                    <acq-stamp-item direction="OUT" id="_231221102304_137" name="acqStamp">
+                        <scalar type="int64_t"/>
+                    </acq-stamp-item>
+                    <update-flag-item direction="OUT" id="_231221102304_138" name="updateFlags" optional="true">
+                        <builtin-type-scalar data-type-name-ref="NOTIFICATION_UPDATE"/>
+                    </update-flag-item>
+                    <cycle-name-item direction="OUT" id="_231221102304_139" name="cycleName" optional="true">
+                        <array type="char">
+                            <dim>32</dim>
+                        </array>
+                    </cycle-name-item>
+                    <cycle-stamp-item direction="OUT" id="_231221102304_140" name="cycleStamp" optional="true">
+                        <scalar type="int64_t"/>
+                    </cycle-stamp-item>
+                    <get-action>
+                        <server-action-ref server-action-name-ref="GetMyCBlockProp"/>
+                    </get-action>
+                    <acquisition-context-item direction="OUT" id="_231221102304_141">
+                        <processIndex direction="OUT" name="processIndex">
+                            <scalar type="int32_t"/>
+                        </processIndex>
+                        <sequenceIndex direction="OUT" name="sequenceIndex">
+                            <scalar type="int32_t"/>
+                        </sequenceIndex>
+                        <chainIndex direction="OUT" name="chainIndex">
+                            <scalar type="int32_t"/>
+                        </chainIndex>
+                        <eventNumber direction="OUT" name="eventNumber">
+                            <scalar type="int32_t"/>
+                        </eventNumber>
+                        <timingGroupID direction="OUT" name="timingGroupID">
+                            <scalar type="int32_t"/>
+                        </timingGroupID>
+                        <acquisitionStamp direction="OUT" name="acquisitionStamp">
+                            <scalar type="int64_t"/>
+                        </acquisitionStamp>
+                        <eventStamp direction="OUT" name="eventStamp">
+                            <scalar type="int64_t"/>
+                        </eventStamp>
+                        <processStartStamp direction="OUT" name="processStartStamp">
+                            <scalar type="int64_t"/>
+                        </processStartStamp>
+                        <sequenceStartStamp direction="OUT" name="sequenceStartStamp">
+                            <scalar type="int64_t"/>
+                        </sequenceStartStamp>
+                        <chainStartStamp direction="OUT" name="chainStartStamp">
+                            <scalar type="int64_t"/>
+                        </chainStartStamp>
+                        <acquisition-context-field-ref field-name-ref="acquisitionContext"/>
+                    </acquisition-context-item>
+                </GSI-Acquisition-Property>
+                <GSI-Version-Property cycle-bound="false" id="_231221102304_11" name="Version" on-change="false" subscribable="false" visibility="operational">
+                    <description>Returns the current software and hardware versions of a piece of equipment.</description>
+                    <acq-stamp-item direction="OUT" id="_231221102304_142" name="acqStamp">
+                        <scalar type="int64_t"/>
+                    </acq-stamp-item>
+                    <update-flag-item direction="OUT" id="_231221102304_143" name="updateFlags" optional="true">
+                        <builtin-type-scalar data-type-name-ref="NOTIFICATION_UPDATE"/>
+                    </update-flag-item>
+                    <cycle-name-item direction="OUT" id="_231221102304_144" name="cycleName" optional="true">
+                        <array type="char">
+                            <dim>32</dim>
+                        </array>
+                    </cycle-name-item>
+                    <cycle-stamp-item direction="OUT" id="_231221102304_145" name="cycleStamp" optional="true">
+                        <scalar type="int64_t"/>
+                    </cycle-stamp-item>
+                    <get-action>
+                        <server-action-ref server-action-name-ref="VersionGetAction"/>
+                    </get-action>
+                    <version-item direction="OUT" id="_231221102304_146" name="classVersion">
+                        <array type="char">
+                            <custom-constant-dim constant-name-ref="MAX_VERSION_NAME_LENGTH"/>
+                        </array>
+                    </version-item>
+                    <version-item direction="OUT" id="_231221102304_147" name="deployUnitVersion">
+                        <array type="char">
+                            <custom-constant-dim constant-name-ref="MAX_VERSION_NAME_LENGTH"/>
+                        </array>
+                    </version-item>
+                    <version-item direction="OUT" id="_231221102304_148" name="fesaVersion">
+                        <array type="char">
+                            <custom-constant-dim constant-name-ref="MAX_VERSION_NAME_LENGTH"/>
+                        </array>
+                    </version-item>
+                </GSI-Version-Property>
+         </acquisition>
+      </device-interface>
+        <global-interface>
+            <setting>
+                <diagnostic-property id="_231221102304_12" multiplexed="false" name="DiagnosticSetting" visibility="expert">
+                    <description>Generic property which allows to diagnose any FESA classes</description>
+                        <mode-item direction="INOUT" id="_231221102304_149" name="enableDiagMode">
+                            <scalar type="bool"/>
+                        </mode-item>
+                        <host-item direction="INOUT" id="_231221102304_150" name="hostName">
+                        	<description>Host of the FESA class</description>
+                            <array type="char">
+                                <dim>32</dim>
+                            </array>
+                        </host-item>
+                        <port-item direction="INOUT" id="_231221102304_151" name="portNumber">
+                        	<description>Port used by the FESA class</description>
+                            <scalar type="int32_t"/>
+                        </port-item>
+                        <config-item direction="IN" id="_231221102304_152" name="requestConfig">
+                            <scalar type="bool"/>
+                        </config-item>
+                        <state-item direction="IN" id="_231221102304_153" name="requestState">
+                            <scalar type="bool"/>
+                        </state-item>
+                        <fwk-topic-item direction="INOUT" id="_231221102304_154" name="fwkTopic">
+                            <builtin-type-scalar data-type-name-ref="DIAG_FWK_TOPIC"/>
+                        </fwk-topic-item>
+                        <custom-topic-item direction="INOUT" id="_231221102304_155" name="customTopic">
+                            <custom-type-scalar data-type-name-ref="DIAG_TOPIC"/>
+                        </custom-topic-item>
+                        <device-trace-item direction="INOUT" id="_231221102304_156" name="traceDevices">
+                            <array type="char">
+                                <dim>320</dim>
+                            </array>
+                        </device-trace-item>
+                        <bypass-action-item direction="INOUT" id="_231221102304_157" name="bypassActions">
+                            <array type="char">
+                                <dim>320</dim>
+                            </array>
+                        </bypass-action-item>
+                </diagnostic-property>
+            </setting>
+            <acquisition>
+                <GSI-DeviceDescription-Property cycle-bound="false" id="_231221102304_13" name="DeviceDescription" on-change="false" subscribable="false" visibility="operational">
+                    <timing-info-item direction="OUT" id="_231221102304_158" name="deviceNameTimingReceiver">
+                        <array type="char">
+                            <variable-dim/>
+                        </array>
+                        <data-field-ref field-name-ref="deviceNameTimingReceiver"/>
+                    </timing-info-item>
+                    <property-info-item direction="OUT" id="_231221102304_159" name="propertyNames">
+                        <array2D type="char">
+                            <variable-dim1/>
+                            <variable-dim2/>
+                        </array2D>
+                    </property-info-item>
+                    <device-info-item direction="OUT" id="_231221102304_160" name="deviceNames">
+                        <array2D type="char">
+                            <variable-dim1/>
+                            <variable-dim2/>
+                        </array2D>
+                    </device-info-item>
+                    <global-device-info-item direction="OUT" id="_231221102304_161" name="globalDeviceName">
+                        <array type="char">
+                            <variable-dim/>
+                        </array>
+                    </global-device-info-item>
+                    <host-info-item direction="OUT" id="_231221102304_162" name="host">
+                        <array type="char">
+                            <variable-dim/>
+                        </array>
+                    </host-info-item>
+                </GSI-DeviceDescription-Property>
+            </acquisition>
+        </global-interface>
+    </interface>
+    <builtin-types>
+		<notification-update-enum name="NOTIFICATION_UPDATE">
+            <IMMEDIATE access="RO" symbol="IMMEDIATE" value="1"/>
+            <SET access="RO" symbol="SET" value="2"/>
+        </notification-update-enum>
+        <diag-fwk-topic name="DIAG_FWK_TOPIC">
+            <b0 name="SRV_GET_ACTION_PROFIING"/>
+            <b1 name="SRV_SET_ACTION_PROFILING"/>
+            <b2 name="RT_ACTION_PROFILING"/>
+            <b3 name="EVENT_PROFILING"/>
+            <b4 name="NOTIFICATION_PROFILING"/>
+            <b5 name="SRV_GET_ACTION_TRACKING"/>
+            <b6 name="SRV_SET_ACTION_TRACKING"/>
+            <b7 name="RT_ACTION_TRACKING"/>
+            <b8 name="EVENT_TRACKING"/>
+            <b9 name="NOTIFICATION_TRACKING"/>
+            <b10 name="PERSISTENCY_TRACKING"/>
+            <b11 name="TRANSACTION_TRACKING"/>
+            <b12 name="SUBSCRIPTION_TRACKING"/>
+            <b13 name="SIGNAL_HANDLER_TRACKING"/>
+            <b14 name="LOCAL_CONNECTION_TRACKING"/>
+        </diag-fwk-topic>
+        <fault-severity name="FaultSeverity">
+        	<description>Enumeration listing the available fault severities used by the fault fields</description>
+        	<INFO access="RO" meaning="NONE" symbol="INFO" value="0"/>
+        	<WARNING access="RO" meaning="WARNING" symbol="WARNING" value="1"/>
+        	<ERROR access="RO" meaning="ERROR" symbol="ERROR" value="2"/>
+        	<CRITICAL access="RO" meaning="ERROR" symbol="CRITICAL" value="3"/>
+        </fault-severity>
+
+    </builtin-types>
+    <custom-types>
+        <diag-custom-topic id="_231221102304_268" name="DIAG_TOPIC">
+        </diag-custom-topic>
+        <enum id="_231221102304_269" name="DEVICE_STATUS">
+        <!--Possible (mutually exclusive) values to describe the device status-->
+            
+            <item access="RW" id="_231221102304_288" meaning="NONE" symbol="UNKNOWN" value="0"/>
+            <!--The device status is unknown-->
+            
+            <item access="RW" id="_231221102304_289" meaning="NONE" symbol="OK" value="1"/>
+            <!--The device is in fully operational state-->
+            
+            <item access="RW" id="_231221102304_290" meaning="NONE" symbol="WARNING" value="2"/>
+            <!--The device is not fully operational; A device in WARNING state can still be used operationally, -->
+            <!--but clients must be informed of a problem that might become worse. Details are explained in the errorMsg field.-->
+            
+            <item access="RW" id="_231221102304_291" meaning="NONE" symbol="ERROR" value="3"/>
+            <!--The device is in a fault state. Details are explained in the errorMsg field-->
+        </enum>
+        <enum id="_231221102304_270" name="DEVICE_POWER_STATE">
+        <!--Possible (mutually exclusive) values to describe the power-state of the device.-->
+            
+            <item access="RW" id="_231221102304_292" meaning="NONE" symbol="UNKNOWN" value="0"/>
+            <!--The device mode is unknown-->
+            
+            <item access="RW" id="_231221102304_293" meaning="ON" symbol="ON" value="1"/>
+            <!--The device is in fully operational state-->
+            
+            <item access="RW" id="_231221102304_294" meaning="NONE" symbol="OFF" value="2"/>
+            <!--The device is turned off-->
+            
+            <item access="RW" id="_231221102304_295" meaning="NONE" symbol="STANDBY" value="3"/>
+            <!--The device is in a stand-by mode. This mode is a sort of “parking mode” in which the device can -->
+            <!--stay for hours or even days. It is defined by the following characteristics:-->
+            <!--It is safe, it does not wear out, it consumes little energy.-->
+            <!--Furthermore, it takes a short time to go from STANDBY to ON mode-->
+            
+            <item access="RW" id="_231221102304_296" meaning="NONE" symbol="POWER_DOWN" value="4"/>
+            <!--The device is shutting down. Note that some properties may not be accessible during this time.-->
+            <!--After shutdown the device will be in the mode OFF-->
+            
+            <item access="RW" id="_231221102304_297" meaning="NONE" symbol="POWER_UP" value="5"/>
+            <!--The device is starting up. Note that some properties may not be accessible during this time.-->
+            <!--After (re-)starting the device probably will be in the mode ON-->
+            
+        </enum>
+        <enum id="_231221102304_271" name="DEVICE_POWER">
+        <!--An enumeration Type used to control the operational mode of the device.-->
+        <!--Its values are a subset of those in the DEVICE_POWER_STATE type-->
+            <item access="RW" id="_231221102304_298" meaning="ON" symbol="ON" value="1"/>
+            <!--The device is in fully operational state-->     
+            
+            <item access="RW" id="_231221102304_299" meaning="OFF" symbol="OFF" value="2"/>
+            <!--The device is turned off-->
+        </enum>
+        <enum id="_231221102304_272" name="DEVICE_CONTROL">
+        <!--Possible values to describe the control mode of a device-->
+        <!--Currently two control modes (LOCAL, REMOTE) are defined-->
+        
+            <item access="RW" id="_231221102304_300" meaning="NONE" symbol="REMOTE" value="0"/>
+            <!--The device can be controlled normally through the control system-->
+            
+            <item access="RW" id="_231221102304_301" meaning="NONE" symbol="LOCAL" value="1"/>
+            <!--The device can be controlled locally. But it can be accessed in read-only mode via the control system-->
+        </enum>
+        <enum id="_231221102304_273" name="TOL_CHECK_MODE">
+        <!--This constant defines possible modes to check whether a control value is inside the tolerance values.-->
+        <!--Used to give information on how the tolerance fields are used to calculate the xxx_status information.-->
+        
+            <item access="RO" id="_231221102304_302" symbol="ABS" value="0"/>
+            <!--Use the absolute tolerance _tolAbs-->
+            
+            <item access="RO" id="_231221102304_303" symbol="REL" value="1"/>
+            <!--Use the relative tolerance _tolRel-->
+        </enum>
+        <bit-enum-32bits id="_231221102304_274" name="AQN_STATUS">
+        <!--Possible values to describe the acquisition status of a field (in the _status suffix)-->
+        <!--If this suffix is missing, it means that no additional status information is provided for the corresponding field-->
+        <!--If all bits are 0, this means that the corresponding field is OK.-->
+        <!--Only the lower 16 bits are standardized, the upper 16 bits can be defined by the equipment specialist.-->
+        <!--The difference between the Status property and the _status suffix is described in the section on the Status property.-->
+            <b0 name="NOT_OK"/>
+            <!--Some problem occurred that is not represented by the other bits. This property is called-->
+            <!-- NOT_OK so that it is not mixed up with ERROR or WARNING in the Status property-->
+            <b1 name="BAD_QUALITY"/>
+            <!--The value was acquired with a degraded quality. This is typically used for measurements.-->
+            <b2 name="DIFFERENT_FROM_SETTING"/>
+            <!--Different from the requested control value (for discrete values)--><!--or out of tolerance (for continuous values).-->
+            <b3 name="OUT_OF_RANGE"/>
+            <!--The value is out of the normal range (e.g. a temperature is too high or too low).-->
+            <b4 name="BUSY"/>
+            <!--The property value is changing in response to receiving a new control value (e.g. moving to a-->
+            <!--new position, charging a capacitor, ...). If the value change does not reach the requested new-->
+            <!--value within the maximum timeout, the BUSY bit should remain=1 and the TIMEOUT bit must be turned on.-->
+            <b5 name="TIMEOUT"/>
+            <!--A timeout occurred, because the property did not reach the reqested new control value within the-->
+            <!--maximum allowable time. A timeout normally indicates a problem to be addressed by the-->
+            <!--equipment specialist. This is typically used for slow changing control values that are BUSY while they change.-->
+            <b6 name="bit6_is_reserved_for_later_usage"/>
+            <b7 name="bit7_is_reserved_for_later_usage"/>
+            <b8 name="bit8_is_reserved_for_later_usage"/>
+            <b9 name="bit9_is_reserved_for_later_usage"/>
+            <b10 name="bit10_is_reserved_for_later_usage"/>
+            <b11 name="bit11_is_reserved_for_later_usage"/>
+            <b12 name="bit12_is_reserved_for_later_usage"/>
+            <b13 name="bit13_is_reserved_for_later_usage"/>
+            <b14 name="bit14_is_reserved_for_later_usage"/>
+            <b15 name="bit15_is_reserved_for_later_usage"/>
+            <!--bit 6 to 15 are reserved ... dont use them!-->
+            
+            <b16 name="bit_16_and_higher_can_be_used_by_the_class_developer"/>
+            <!--into bit 16..32 you can put in anything you want-->
+        </bit-enum-32bits>
+
+        <struct id="_231221102304_275" name="GSI_ERROR">
+        <!--This struct-item describes the structure of an GSI-error-->
+            <struct-item id="_231221102304_316" name="error_string">
+            <!--This string holds the error-message-->
+                <array type="char">
+                    <custom-constant-dim constant-name-ref="MAX_ERROR_MESSAGE_LENGTH"/>
+                </array>
+            </struct-item>
+            <struct-item id="_231221102304_317" name="error_code">
+            <!--The error code according to the defined error-message-->
+                <scalar type="int32_t"/>
+            </struct-item>
+            <!--The timestamp when the error occured-->
+            <struct-item id="_231221102304_318" name="error_timestamp">
+                <scalar type="int64_t"/>
+            </struct-item>
+            <!--The cycle for which the error occured-->
+            <struct-item id="_231221102304_319" name="error_cycle_name">
+                <array type="char">
+                    <custom-constant-dim constant-name-ref="MAX_CYCLE_NAME_LENGTH"/>
+                </array>
+            </struct-item>
+        </struct>
+        <struct id="_231221102304_276" name="GSI_ACQ_CONTEXT">
+            <description>WhiteRabbit event specific acquisition information</description>
+        	<struct-item id="_231221102304_320" name="processIndex">
+        		<description>Used in order to index process-multiplexed data</description>
+        		<scalar type="int32_t"/>
+        	</struct-item>
+        	<struct-item id="_231221102304_321" name="sequenceIndex">
+        	    <description>Used in order to index sequence-multiplexed data</description>
+        		<scalar type="int32_t"/>
+        	</struct-item>
+        	<struct-item id="_231221102304_322" name="chainIndex">
+        	    <description>Refers to a specific beam production chain</description>
+        		<scalar type="int32_t"/>
+        	</struct-item>
+        	<struct-item id="_231221102304_323" name="eventNumber">
+        	    <description>The number of the event describes it's type</description>
+        		<scalar type="int32_t"/>
+        	</struct-item>
+        	<struct-item id="_231221102304_324" name="timingGroupID">
+        	    <description>ID of the timing group for which the event is relevant</description>
+        		<scalar type="int32_t"/>
+        	</struct-item>
+        	<struct-item id="_231221102304_325" name="acquisitionStamp">
+        	    <description>The acquisition stamp is used to indicate when a measurement was done</description>
+                <scalar type="int64_t"/>
+            </struct-item>
+        	<struct-item id="_231221102304_326" name="eventStamp">
+        	    <description>The event stamp is used to indicate when WhiteRabbit event was triggered on the Timing Receiver</description>
+        		<scalar type="int64_t"/>
+        	</struct-item>
+        	<struct-item id="_231221102304_327" name="processStartStamp">
+        	    <description>The process start stamp indicates when the first event of the current process was triggered</description>
+        		<scalar type="int64_t"/>
+        	</struct-item>
+        	<struct-item id="_231221102304_328" name="sequenceStartStamp">
+        	    <description>The sequence start stamp indicates when the first event of the current sequence was triggered</description>
+        		<scalar type="int64_t"/>
+        	</struct-item>
+        	<struct-item id="_231221102304_329" name="chainStartStamp">
+        	    <description>The chain start stamp indicates when the first event of the current chain was triggered</description>
+        		<scalar type="int64_t"/>
+        	</struct-item>
+        </struct>
+        <constant id="_231221102304_277" name="MAX_ERROR_MESSAGE_LENGTH" type="uint32_t" value="256"/>
+        <constant id="_231221102304_278" name="MAX_NUMBER_OF_ERROR_MESSAGES" type="uint32_t" value="16"/>
+        <constant id="_231221102304_279" name="MAX_CYCLE_NAME_LENGTH" type="uint32_t" value="256"/>
+        <constant id="_231221102304_280" name="MAX_VERSION_NAME_LENGTH" type="uint32_t" value="256"/>
+        <constant id="_231221102304_281" name="MAX_DETAILED_STATUS_LABEL_LENGTH" type="uint32_t" value="30"/>
+        <constant id="_231221102304_282" name="DETAILED_STATUS_SIZE" type="uint32_t" value="2"/>
+        <enum id="_231221102304_283" name="DETAILED_STATUS_SEVERITY">
+            <item access="RO" id="_231221102304_304" symbol="INFO" value="0"/>
+            <item access="RO" id="_231221102304_305" symbol="WARNING_ON_FALSE" value="1"/>
+            <item access="RO" id="_231221102304_306" symbol="ERROR_ON_FALSE" value="2"/>
+        </enum>
+        <enum id="_231221102304_284" name="MODULE_STATUS">
+        <!-- Mutually exclusive values to describe the status of a hardware / software module-->
+        	<item access="RO" id="_231221102304_307" symbol="UNKNOWN" value="0"/>
+        	<!--The status of the module is not known-->
+        	<item access="RO" id="_231221102304_308" symbol="OK" value="1"/>
+        	<!--The module is in fully operational state-->
+        	<item access="RO" id="_231221102304_309" symbol="WARNING" value="2"/>
+        	<!--The module is not fully operational; A module in WARNING state may still be used operationally, -->
+        	<!--but clients must be informed of a problem that might become worse. -->
+        	<item access="RO" id="_231221102304_310" symbol="ERROR" value="3"/>
+        	<!--The module is in a fault state. The related device is not operational.-->
+        	<item access="RO" id="_231221102304_311" symbol="NOT_AVAILABLE" value="4"/>
+            <!--The module is missing. The related device is not operational.-->
+        </enum>
+        <constant id="_231221102304_285" name="MAX_MODULE_STATUS_LABEL_LENGTH" type="uint32_t" value="30"/>
+        <constant id="_231221102304_286" name="MODULE_STATUS_SIZE" type="uint32_t" value="2"/>
+    <enum id="_231221102304_287" name="TEST_ENUM">
+            <item access="RW" id="_231221102304_312" symbol="OK" value="0"/>
+            <item access="RW" id="_231221102304_313" symbol="WARNING" value="1"/>
+            <item access="RW" id="_231221102304_314" symbol="ERROR" value="2"/>
+            <item access="RW" id="_231221102304_315" symbol="UNKNOWN" value="3"/>
+        </enum>
+    </custom-types>
+    <data>
+        <device-data>
+            <configuration>
+                <field id="_231221102304_164" name="C_dt_fesa">
+                    <array2D type="double">
+                        <dim1>2</dim1>
+                        <dim2>2</dim2>
+                    </array2D>
+                </field>
+                <field id="_231221102304_165" name="C_real_fesa">
+                    <array2D type="float">
+                        <dim1>2</dim1>
+                        <dim2>2</dim2>
+                    </array2D>
+                </field>
+                <field id="_231221102304_166" name="C_dint_fesa">
+                    <array2D type="int32_t">
+                        <dim1>2</dim1>
+                        <dim2>2</dim2>
+                    </array2D>
+                </field>
+                <field id="_231221102304_167" name="C_int_fesa">
+                    <array2D type="int16_t">
+                        <dim1>2</dim1>
+                        <dim2>2</dim2>
+                    </array2D>
+                </field>
+                <field id="_231221102304_168" name="C_dword_fesa">
+                    <array2D type="int64_t">
+                        <dim1>2</dim1>
+                        <dim2>2</dim2>
+                    </array2D>
+                </field>
+                <field id="_231221102304_169" name="C_word_fesa">
+                    <array2D type="int32_t">
+                        <dim1>2</dim1>
+                        <dim2>2</dim2>
+                    </array2D>
+                </field>
+                <field id="_231221102304_170" name="C_byte_fesa">
+                    <array2D type="int16_t">
+                        <dim1>2</dim1>
+                        <dim2>2</dim2>
+                    </array2D>
+                </field>
+                <field id="_231221102304_171" name="C_char_fesa">
+                    <array2D type="int8_t">
+                        <dim1>2</dim1>
+                        <dim2>2</dim2>
+                    </array2D>
+                </field>
+                <field id="_231221102304_172" name="C_date_fesa">
+                    <array2D type="double">
+                        <dim1>2</dim1>
+                        <dim2>2</dim2>
+                    </array2D>
+                </field>
+                <field id="_231221102304_173" name="C_float32_fesa">
+                    <array2D type="float">
+                        <dim1>2</dim1>
+                        <dim2>2</dim2>
+                    </array2D>
+                </field>
+                <field id="_231221102304_174" name="C_uint32_fesa">
+                    <array2D type="int64_t">
+                        <dim1>2</dim1>
+                        <dim2>2</dim2>
+                    </array2D>
+                </field>
+                <field id="_231221102304_175" name="C_int32_fesa">
+                    <array2D type="int32_t">
+                        <dim1>2</dim1>
+                        <dim2>2</dim2>
+                    </array2D>
+                </field>
+                <field id="_231221102304_176" name="C_uint16_fesa">
+                    <array2D type="int32_t">
+                        <dim1>2</dim1>
+                        <dim2>2</dim2>
+                    </array2D>
+                </field>
+                <field id="_231221102304_177" name="C_int16_fesa">
+                    <array2D type="int16_t">
+                        <dim1>2</dim1>
+                        <dim2>2</dim2>
+                    </array2D>
+                </field>
+                <field id="_231221102304_178" name="C_uint8_fesa">
+                    <array2D type="int16_t">
+                        <dim1>2</dim1>
+                        <dim2>2</dim2>
+                    </array2D>
+                </field>
+                <field id="_231221102304_179" name="C_int8">
+                    <array2D type="int8_t">
+                        <dim1>2</dim1>
+                        <dim2>2</dim2>
+                    </array2D>
+                </field>
+                <field id="_231221102304_180" name="plcDeviceLabel">
+                    <description>Name of the related SILECS instance within the PLC mapping</description>
+                    <array type="char">
+                        <dim>128</dim>
+                    </array>
+                </field>
+                <field id="_231221102304_181" name="plcHostName">
+                    <description>Hostname of the PLC that contains the related SILECS class device</description>
+                    <array type="char">
+                        <dim>128</dim>
+                    </array>
+                </field>
+                <GSI-detailed-status-labels-field id="_231221102304_182" name="detailedStatus_labels">
+                    <array2D type="char">
+                        <custom-constant-dim1 constant-name-ref="DETAILED_STATUS_SIZE"/>
+                        <custom-constant-dim2 constant-name-ref="MAX_DETAILED_STATUS_LABEL_LENGTH"/>
+                    </array2D>
+                    <default>{myStatusLabel1,myStatusLabel2}</default>
+                </GSI-detailed-status-labels-field>
+                <GSI-detailed-status-severity-field id="_231221102304_183" name="detailedStatus_severity">
+                    <custom-type-array data-type-name-ref="DETAILED_STATUS_SEVERITY">
+                        <custom-constant-dim constant-name-ref="DETAILED_STATUS_SIZE"/>
+                    </custom-type-array>
+                    <default>{INFO,INFO}</default>
+                </GSI-detailed-status-severity-field>
+                <GSI-module-status-labels-field id="_231221102304_184" name="moduleStatus_labels">
+                	<array2D type="char">
+                		<custom-constant-dim1 constant-name-ref="MODULE_STATUS_SIZE"/>
+                		
+                		<custom-constant-dim2 constant-name-ref="MAX_MODULE_STATUS_LABEL_LENGTH"/>
+                	</array2D>
+                	<default>{myModule1,myModule2}</default>
+                </GSI-module-status-labels-field>
+            </configuration>
+            <setting>
+                <field id="_231221102304_185" multiplexed="false" name="WO_enum_fesa" persistent="true">
+                    <custom-type-array data-type-name-ref="TEST_ENUM">
+                        <dim>10</dim>
+                    </custom-type-array>
+                </field>
+                <field id="_231221102304_186" multiplexed="false" name="WO_dt_fesa" persistent="true">
+                    <array type="double">
+                        <dim>10</dim>
+                    </array>
+                </field>
+                <field id="_231221102304_187" multiplexed="false" name="WO_real_fesa" persistent="true">
+                    <array type="float">
+                        <dim>10</dim>
+                    </array>
+                </field>
+                <field id="_231221102304_188" multiplexed="false" name="WO_dint_fesa" persistent="true">
+                    <array type="int32_t">
+                        <dim>10</dim>
+                    </array>
+                </field>
+                <field id="_231221102304_189" multiplexed="false" name="WO_int_fesa" persistent="true">
+                    <array type="int16_t">
+                        <dim>10</dim>
+                    </array>
+                </field>
+                <field id="_231221102304_190" multiplexed="false" name="WO_dword_fesa" persistent="true">
+                    <array type="int64_t">
+                        <dim>10</dim>
+                    </array>
+                </field>
+                <field id="_231221102304_191" multiplexed="false" name="WO_word_fesa" persistent="true">
+                    <array type="int32_t">
+                        <dim>10</dim>
+                    </array>
+                </field>
+                <field id="_231221102304_192" multiplexed="false" name="WO_byte_fesa" persistent="true">
+                    <array type="int16_t">
+                        <dim>10</dim>
+                    </array>
+                </field>
+                <field id="_231221102304_193" multiplexed="false" name="WO_char_fesa" persistent="true">
+                    <array type="int8_t">
+                        <dim>10</dim>
+                    </array>
+                </field>
+                <field id="_231221102304_194" multiplexed="false" name="WO_date_fesa" persistent="true">
+                    <array type="double">
+                        <dim>10</dim>
+                    </array>
+                </field>
+                <field id="_231221102304_195" multiplexed="false" name="WO_string_fesa" persistent="true">
+                    <array2D type="char">
+                        <dim1>10</dim1>
+                        <dim2>64</dim2>
+                    </array2D>
+                </field>
+                <field id="_231221102304_196" multiplexed="false" name="WO_float32_fesa" persistent="true">
+                    <array type="float">
+                        <dim>10</dim>
+                    </array>
+                </field>
+                <field id="_231221102304_197" multiplexed="false" name="WO_uint32_fesa" persistent="true">
+                    <array type="int64_t">
+                        <dim>10</dim>
+                    </array>
+                </field>
+                <field id="_231221102304_198" multiplexed="false" name="WO_int32_fesa" persistent="true">
+                    <array type="int32_t">
+                        <dim>10</dim>
+                    </array>
+                </field>
+                <field id="_231221102304_199" multiplexed="false" name="WO_uint16_fesa" persistent="true">
+                    <array type="int32_t">
+                        <dim>10</dim>
+                    </array>
+                </field>
+                <field id="_231221102304_200" multiplexed="false" name="WO_int16_fesa" persistent="true">
+                    <array type="int16_t">
+                        <dim>10</dim>
+                    </array>
+                </field>
+                <field id="_231221102304_201" multiplexed="false" name="WO_uint8_fesa" persistent="true">
+                    <array type="int16_t">
+                        <dim>10</dim>
+                    </array>
+                </field>
+                <field id="_231221102304_202" multiplexed="false" name="WO_int8" persistent="true">
+                    <array type="int8_t">
+                        <dim>10</dim>
+                    </array>
+                </field>
+                <field id="_231221102304_203" multiplexed="false" name="RW_enum_fesa" persistent="true">
+                    <custom-type-scalar data-type-name-ref="TEST_ENUM"/>
+                </field>
+                <field id="_231221102304_204" multiplexed="false" name="RW2_dt_fesa" persistent="true">
+                    <array2D type="double">
+                        <dim1>2</dim1>
+                        <dim2>2</dim2>
+                    </array2D>
+                </field>
+                <field id="_231221102304_205" multiplexed="false" name="RW2_real_fesa" persistent="true">
+                    <array2D type="float">
+                        <dim1>2</dim1>
+                        <dim2>2</dim2>
+                    </array2D>
+                </field>
+                <field id="_231221102304_206" multiplexed="false" name="RW2_dint_fesa" persistent="true">
+                    <array2D type="int32_t">
+                        <dim1>2</dim1>
+                        <dim2>2</dim2>
+                    </array2D>
+                </field>
+                <field id="_231221102304_207" multiplexed="false" name="RW2_int_fesa" persistent="true">
+                    <array2D type="int16_t">
+                        <dim1>2</dim1>
+                        <dim2>2</dim2>
+                    </array2D>
+                </field>
+                <field id="_231221102304_208" multiplexed="false" name="RW2_dword_fesa" persistent="true">
+                    <array2D type="int64_t">
+                        <dim1>2</dim1>
+                        <dim2>2</dim2>
+                    </array2D>
+                </field>
+                <field id="_231221102304_209" multiplexed="false" name="RW2_word_fesa" persistent="true">
+                    <array2D type="int32_t">
+                        <dim1>2</dim1>
+                        <dim2>2</dim2>
+                    </array2D>
+                </field>
+                <field id="_231221102304_210" multiplexed="false" name="RW2_byte_fesa" persistent="true">
+                    <array2D type="int16_t">
+                        <dim1>2</dim1>
+                        <dim2>2</dim2>
+                    </array2D>
+                </field>
+                <field id="_231221102304_211" multiplexed="false" name="RW2_char_fesa" persistent="true">
+                    <array2D type="int8_t">
+                        <dim1>2</dim1>
+                        <dim2>2</dim2>
+                    </array2D>
+                </field>
+                <field id="_231221102304_212" multiplexed="false" name="RW2_date_fesa" persistent="true">
+                    <array2D type="double">
+                        <dim1>2</dim1>
+                        <dim2>2</dim2>
+                    </array2D>
+                </field>
+                <field id="_231221102304_213" multiplexed="false" name="RW2_float32_fesa" persistent="true">
+                    <array2D type="float">
+                        <dim1>2</dim1>
+                        <dim2>2</dim2>
+                    </array2D>
+                </field>
+                <field id="_231221102304_214" multiplexed="false" name="RW2_uint32_fesa" persistent="true">
+                    <array2D type="int64_t">
+                        <dim1>2</dim1>
+                        <dim2>2</dim2>
+                    </array2D>
+                </field>
+                <field id="_231221102304_215" multiplexed="false" name="RW2_int32_fesa" persistent="true">
+                    <array2D type="int32_t">
+                        <dim1>2</dim1>
+                        <dim2>2</dim2>
+                    </array2D>
+                </field>
+                <field id="_231221102304_216" multiplexed="false" name="RW2_uint16_fesa" persistent="true">
+                    <array2D type="int32_t">
+                        <dim1>2</dim1>
+                        <dim2>2</dim2>
+                    </array2D>
+                </field>
+                <field id="_231221102304_217" multiplexed="false" name="RW2_int16_fesa" persistent="true">
+                    <array2D type="int16_t">
+                        <dim1>2</dim1>
+                        <dim2>2</dim2>
+                    </array2D>
+                </field>
+                <field id="_231221102304_218" multiplexed="false" name="RW2_uint8_fesa" persistent="true">
+                    <array2D type="int16_t">
+                        <dim1>2</dim1>
+                        <dim2>2</dim2>
+                    </array2D>
+                </field>
+                <field id="_231221102304_219" multiplexed="false" name="RW2_int8" persistent="true">
+                    <array2D type="int8_t">
+                        <dim1>2</dim1>
+                        <dim2>2</dim2>
+                    </array2D>
+                </field>
+                <field id="_231221102304_220" multiplexed="false" name="RW_dt_fesa" persistent="true">
+                    <scalar type="double"/>
+                </field>
+                <field id="_231221102304_221" multiplexed="false" name="RW_real_fesa" persistent="true">
+                    <scalar type="float"/>
+                </field>
+                <field id="_231221102304_222" multiplexed="false" name="RW_dint_fesa" persistent="true">
+                    <scalar type="int32_t"/>
+                </field>
+                <field id="_231221102304_223" multiplexed="false" name="RW_int_fesa" persistent="true">
+                    <scalar type="int16_t"/>
+                </field>
+                <field id="_231221102304_224" multiplexed="false" name="RW_dword_fesa" persistent="true">
+                    <scalar type="int64_t"/>
+                </field>
+                <field id="_231221102304_225" multiplexed="false" name="RW_word_fesa" persistent="true">
+                    <scalar type="int32_t"/>
+                </field>
+                <field id="_231221102304_226" multiplexed="false" name="RW_byte_fesa" persistent="true">
+                    <scalar type="int16_t"/>
+                </field>
+                <field id="_231221102304_227" multiplexed="false" name="RW_char_fesa" persistent="true">
+                    <scalar type="int8_t"/>
+                </field>
+                <field id="_231221102304_228" multiplexed="false" name="RW_date_fesa" persistent="true">
+                    <scalar type="double"/>
+                </field>
+                <field id="_231221102304_229" multiplexed="false" name="RW_string_fesa" persistent="true">
+                    <array type="char">
+                        <dim>64</dim>
+                    </array>
+                </field>
+                <field id="_231221102304_230" multiplexed="false" name="RW_float32_fesa" persistent="true">
+                    <scalar type="float"/>
+                </field>
+                <field id="_231221102304_231" multiplexed="false" name="RW_uint32_fesa" persistent="true">
+                    <scalar type="int64_t"/>
+                </field>
+                <field id="_231221102304_232" multiplexed="false" name="RW_int32_fesa" persistent="true">
+                    <scalar type="int32_t"/>
+                </field>
+                <field id="_231221102304_233" multiplexed="false" name="RW_uint16_fesa" persistent="true">
+                    <scalar type="int32_t"/>
+                </field>
+                <field id="_231221102304_234" multiplexed="false" name="RW_int16_fesa" persistent="true">
+                    <scalar type="int16_t"/>
+                </field>
+                <field id="_231221102304_235" multiplexed="false" name="RW_uint8_fesa" persistent="true">
+                    <scalar type="int16_t"/>
+                </field>
+                <field id="_231221102304_236" multiplexed="false" name="RW_int8" persistent="true">
+                    <scalar type="int8_t"/>
+                </field>
+                <GSI-power-field id="_231221102304_237" multiplexed="false" name="power" persistent="false">
+                    <custom-type-scalar data-type-name-ref="DEVICE_POWER"/>
+                </GSI-power-field>
+            </setting>
+            <acquisition>
+                <field cycle-bound="false" id="_231221102304_238" name="RO_enum_fesa" persistent="false">
+                    <custom-type-scalar data-type-name-ref="TEST_ENUM"/>
+                </field>
+                <field cycle-bound="false" id="_231221102304_239" name="RO_dt_fesa" persistent="false">
+                    <scalar type="double"/>
+                </field>
+                <field cycle-bound="false" id="_231221102304_240" name="RO_real_fesa" persistent="false">
+                    <scalar type="float"/>
+                </field>
+                <field cycle-bound="false" id="_231221102304_241" name="RO_dint_fesa" persistent="false">
+                    <scalar type="int32_t"/>
+                </field>
+                <field cycle-bound="false" id="_231221102304_242" name="RO_int_fesa" persistent="false">
+                    <scalar type="int16_t"/>
+                </field>
+                <field cycle-bound="false" id="_231221102304_243" name="RO_dword_fesa" persistent="false">
+                    <scalar type="int64_t"/>
+                </field>
+                <field cycle-bound="false" id="_231221102304_244" name="RO_word_fesa" persistent="false">
+                    <scalar type="int32_t"/>
+                </field>
+                <field cycle-bound="false" id="_231221102304_245" name="RO_byte_fesa" persistent="false">
+                    <scalar type="int16_t"/>
+                </field>
+                <field cycle-bound="false" id="_231221102304_246" name="RO_char_fesa" persistent="false">
+                    <scalar type="int8_t"/>
+                </field>
+                <field cycle-bound="false" id="_231221102304_247" name="RO_date_fesa" persistent="false">
+                    <scalar type="double"/>
+                </field>
+                <field cycle-bound="false" id="_231221102304_248" name="RO_string_fesa" persistent="false">
+                    <array type="char">
+                        <dim>64</dim>
+                    </array>
+                </field>
+                <field cycle-bound="false" id="_231221102304_249" name="RO_float32_fesa" persistent="false">
+                    <scalar type="float"/>
+                </field>
+                <field cycle-bound="false" id="_231221102304_250" name="RO_uint32_fesa" persistent="false">
+                    <scalar type="int64_t"/>
+                </field>
+                <field cycle-bound="false" id="_231221102304_251" name="RO_int32_fesa" persistent="false">
+                    <scalar type="int32_t"/>
+                </field>
+                <field cycle-bound="false" id="_231221102304_252" name="RO_uint16_fesa" persistent="false">
+                    <scalar type="int32_t"/>
+                </field>
+                <field cycle-bound="false" id="_231221102304_253" name="RO_int16_fesa" persistent="false">
+                    <scalar type="int16_t"/>
+                </field>
+                <field cycle-bound="false" id="_231221102304_254" name="RO_uint8_fesa" persistent="false">
+                    <scalar type="int16_t"/>
+                </field>
+                <field cycle-bound="false" id="_231221102304_255" name="RO_int8" persistent="false">
+                    <scalar type="int8_t"/>
+                </field>
+                <GSI-control-field cycle-bound="false" id="_231221102304_256" name="control">
+                    <custom-type-scalar data-type-name-ref="DEVICE_CONTROL"/>
+                </GSI-control-field>
+                <GSI-powerState-field cycle-bound="false" id="_231221102304_257" name="powerState">
+                    <custom-type-scalar data-type-name-ref="DEVICE_POWER_STATE"/>
+                </GSI-powerState-field>
+                <GSI-status-field cycle-bound="false" id="_231221102304_258" name="status">
+                    <custom-type-scalar data-type-name-ref="DEVICE_STATUS"/>
+                </GSI-status-field>
+                <GSI-interlock-field cycle-bound="false" id="_231221102304_259" name="interlock">
+                    <scalar type="bool"/>
+                </GSI-interlock-field>
+                <GSI-opReady-field cycle-bound="false" id="_231221102304_260" name="opReady">
+                    <scalar type="bool"/>
+                </GSI-opReady-field>
+                <GSI-modulesReady-field cycle-bound="false" id="_231221102304_261" name="modulesReady">
+                	<scalar type="bool"/>
+                </GSI-modulesReady-field>
+                <GSI-detailed-status-field cycle-bound="false" id="_231221102304_262" name="detailedStatus">
+                    <array type="bool">
+                        <custom-constant-dim constant-name-ref="DETAILED_STATUS_SIZE"/>
+                    </array>
+                </GSI-detailed-status-field>
+                <GSI-module-status-field cycle-bound="false" id="_231221102304_263" name="moduleStatus">
+                	<custom-type-array data-type-name-ref="MODULE_STATUS">
+                		<custom-constant-dim constant-name-ref="MODULE_STATUS_SIZE"/>
+                	</custom-type-array>
+                </GSI-module-status-field>
+                <GSI-acquisition-context-field cycle-bound="true" id="_231221102304_264" name="acquisitionContext">
+                    <custom-type-scalar data-type-name-ref="GSI_ACQ_CONTEXT"/>
+                </GSI-acquisition-context-field>
+                <GSI-error_collection-field cycle-bound="false" id="_231221102304_265" name="error_collection">
+                    <custom-type-array data-type-name-ref="GSI_ERROR">
+                        <custom-constant-dim constant-name-ref="MAX_NUMBER_OF_ERROR_MESSAGES"/>
+                    </custom-type-array>
+                </GSI-error_collection-field>
+            </acquisition>
+        </device-data>
+        <global-data>
+            <configuration>
+                <!-- The name of the timing receiver -->
+                <field id="_231221102304_266" name="plcClassVersion">
+                    <description>Version of the SILECS class that needs to be deployed in the controller</description>
+                    <array type="char">
+                        <dim>5</dim>
+                    </array>
+                    <default>0.1.0</default>
+                </field>
+                <GSI-timing-receiver-name-field id="_231221102304_267" name="deviceNameTimingReceiver">
+                    <array type="char">
+                        <!-- The number of the timing receiver -->
+                        <variable-dim/>
+                    </array>
+                </GSI-timing-receiver-name-field>
+                </configuration>
+        </global-data>
+    </data>
+    <actions>
+        <set-server-action implementation="default" name="InitSetAction"/>
+        <set-server-action implementation="default" name="ResetSetAction"/>
+        <set-server-action implementation="default" name="SettingSetAction"/>
+        <set-server-action implementation="default" name="PowerSetAction"/>
+        <get-server-action implementation="default" name="PowerGetAction"/>
+        <get-server-action implementation="default" name="SettingGetAction"/>
+        <get-server-action implementation="default" name="AcquisitionGetAction"/>
+        <get-server-action implementation="default" name="StatusGetAction"/>
+        <get-server-action implementation="default" name="VersionGetAction"/>
+        <get-server-action implementation="default" name="ModuleStatusGetAction"/>
+
+		<rt-action name="StatusUpdateAction"/>	<!-- Pre-defined status update action -->
+    <get-server-action implementation="custom" name="GetMyROBlockProp"/>
+        <set-server-action implementation="custom" name="SetMyRWBlockProp"/>
+        <get-server-action implementation="custom" name="GetMyRWBlockProp"/>
+        <set-server-action implementation="custom" name="SetMyWOBlockProp"/>
+        <get-server-action implementation="custom" name="GetMyCBlockProp"/>
+    </actions>
+    <events>
+	    <logical-events>
+			<logical-event id="_231221102304_163" name="StatusUpdateEvent" type="timer" use="required"/>
+		</logical-events>
+	</events>
+	<scheduling-units>
+		<scheduling-unit name="StatusUpdateSchedulingUnit">
+			<rt-action-ref rt-action-name-ref="StatusUpdateAction"/>
+			<logical-event-ref logical-event-name-ref="StatusUpdateEvent"/>
+		</scheduling-unit>
+    </scheduling-units>
+
+</equipment-model>
diff --git a/test/AllTypesFESA/src/AllTypesFESA.silecsdesign b/test/AllTypesFESA/src/AllTypesFESA.silecsdesign
new file mode 100644
index 0000000..11fd4aa
--- /dev/null
+++ b/test/AllTypesFESA/src/AllTypesFESA.silecsdesign
@@ -0,0 +1,302 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<SILECS-Design xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" silecs-version="3.0.0" created="06/27/16" updated="06/27/16" xsi:noNamespaceSchemaLocation="/home/cosylab/mmarn/lnx/workspace751/opensilecs/build/3.0.0/silecs-model/xml/DesignSchema.xsd">
+	<Information>
+		<Owner user-login="schwinn"/>
+		<Editor user-login="schwinn"/>
+	</Information>
+	<SILECS-Class name="AllTypesFESA" version="0.1.0" domain="OPERATIONAL">
+        <Acquisition-Block name="MyROBlock" generateFesaProperty="true" fesaPropertyName="MyROBlockProp">
+            <Acquisition-Register name="RO_int8" generateFesaValueItem="true">
+                <scalar format="int8"/>
+            </Acquisition-Register>
+            <Acquisition-Register name="RO_uint8" generateFesaValueItem="true" fesaFieldName="RO_uint8_fesa">
+                <scalar format="uint8"/>
+            </Acquisition-Register>
+            <Acquisition-Register name="RO_int16" generateFesaValueItem="true" fesaFieldName="RO_int16_fesa">
+                <scalar format="int16"/>
+            </Acquisition-Register>
+            <Acquisition-Register name="RO_uint16" generateFesaValueItem="true" fesaFieldName="RO_uint16_fesa">
+                <scalar format="uint16"/>
+            </Acquisition-Register>
+            <Acquisition-Register name="RO_int32" generateFesaValueItem="true" fesaFieldName="RO_int32_fesa">
+                <scalar format="int32"/>
+            </Acquisition-Register>
+            <Acquisition-Register name="RO_uint32" generateFesaValueItem="true" fesaFieldName="RO_uint32_fesa">
+                <scalar format="uint32"/>
+            </Acquisition-Register>
+            <!--<Register name="RO_int64" format="int64" synchro="MASTER" generateFesaValueItem="true" fesaFieldName="RO_int64_fesa"/> not Supported for Beckhoff, Siemens and Schneider -->
+            <!--<Register name="RO_uint64" format="uint64" synchro="MASTER" generateFesaValueItem="true" fesaFieldName="RO_uint64_fesa"/> not Supported for Beckhoff, Siemens and Schneider -->
+            <Acquisition-Register name="RO_float32" generateFesaValueItem="true" fesaFieldName="RO_float32_fesa">
+                <scalar format="float32"/>
+            </Acquisition-Register>
+            <!--<Register name="RO_float64" format="float64" synchro="MASTER" generateFesaValueItem="true" esaFieldName="RO_float64_fesa"/> not Supported for Rabbit, Beckhoff, Siemens and Schneider -->
+            <Acquisition-Register name="RO_string" generateFesaValueItem="true" fesaFieldName="RO_string_fesa">
+                <string string-length="64" format="string"/>
+            </Acquisition-Register>
+            <Acquisition-Register name="RO_date" generateFesaValueItem="true" fesaFieldName="RO_date_fesa">
+                <scalar format="date"/>
+            </Acquisition-Register>
+            <Acquisition-Register name="RO_char" generateFesaValueItem="true" fesaFieldName="RO_char_fesa">
+                <scalar format="char"/>
+            </Acquisition-Register>
+            <Acquisition-Register name="RO_byte" generateFesaValueItem="true" fesaFieldName="RO_byte_fesa">
+                <scalar format="byte"/>
+            </Acquisition-Register>
+            <Acquisition-Register name="RO_word" generateFesaValueItem="true" fesaFieldName="RO_word_fesa">
+                <scalar format="word"/>
+            </Acquisition-Register>
+            <Acquisition-Register name="RO_dword" generateFesaValueItem="true" fesaFieldName="RO_dword_fesa">
+                <scalar format="dword"/>
+            </Acquisition-Register>
+            <Acquisition-Register name="RO_int" generateFesaValueItem="true" fesaFieldName="RO_int_fesa">
+                <scalar format="int"/>
+            </Acquisition-Register>
+            <Acquisition-Register name="RO_dint" generateFesaValueItem="true" fesaFieldName="RO_dint_fesa">
+                <scalar format="dint"/>
+            </Acquisition-Register>
+            <Acquisition-Register name="RO_real" generateFesaValueItem="true" fesaFieldName="RO_real_fesa">
+                <scalar format="real"/>
+            </Acquisition-Register>
+            <Acquisition-Register name="RO_dt" generateFesaValueItem="true" fesaFieldName="RO_dt_fesa">
+                <scalar format="dt"/>
+            </Acquisition-Register>
+            <Acquisition-Register name="RO_enum" generateFesaValueItem="true" fesaFieldName="RO_enum_fesa">
+                <custom-type-scalar custom-type-name-ref="TEST_ENUM"/>
+            </Acquisition-Register>
+        </Acquisition-Block>
+        <Setting-Block name="MyRWBlock" generateFesaProperty="true" fesaPropertyName="MyRWBlockProp">
+            <Setting-Register name="RW_int8" generateFesaValueItem="true">
+                <scalar format="int8"/>
+            </Setting-Register>
+            <Setting-Register name="RW_uint8" generateFesaValueItem="true" fesaFieldName="RW_uint8_fesa">
+                <scalar format="uint8"/>
+            </Setting-Register>
+            <Setting-Register name="RW_int16" generateFesaValueItem="true" fesaFieldName="RW_int16_fesa">
+                <scalar format="int16"/>
+            </Setting-Register>
+            <Setting-Register name="RW_uint16" generateFesaValueItem="true" fesaFieldName="RW_uint16_fesa">
+                <scalar format="uint16"/>
+            </Setting-Register>
+            <Setting-Register name="RW_int32" generateFesaValueItem="true" fesaFieldName="RW_int32_fesa">
+                <scalar format="int32"/>
+            </Setting-Register>
+            <Setting-Register name="RW_uint32" generateFesaValueItem="true" fesaFieldName="RW_uint32_fesa">
+                <scalar format="uint32"/>
+            </Setting-Register>
+            <!--<Register name="RW_int64" format="int64" synchro="MASTER" generateFesaValueItem="true" fesaFieldName="RW_int64_fesa"/> not Supported for Beckhoff, Siemens and Schneider -->
+            <!--<Register name="RW_uint64" format="uint64" synchro="MASTER" generateFesaValueItem="true" fesaFieldName="RW_uint64_fesa"/> not Supported for Beckhoff, Siemens and Schneider -->
+            <Setting-Register name="RW_float32" generateFesaValueItem="true" fesaFieldName="RW_float32_fesa">
+                <scalar format="float32"/>
+            </Setting-Register>
+            <!--<Register name="RW_float64" format="float64" synchro="MASTER" generateFesaValueItem="true" esaFieldName="RW_float64_fesa"/> not Supported for Rabbit, Beckhoff, Siemens and Schneider -->
+            <Setting-Register name="RW_string" generateFesaValueItem="true" fesaFieldName="RW_string_fesa">
+                <string string-length="64" format="string"/>
+            </Setting-Register>
+            <Setting-Register name="RW_date" generateFesaValueItem="true" fesaFieldName="RW_date_fesa">
+                <scalar format="date"/>
+            </Setting-Register>
+            <Setting-Register name="RW_char" generateFesaValueItem="true" fesaFieldName="RW_char_fesa">
+                <scalar format="char"/>
+            </Setting-Register>
+            <Setting-Register name="RW_byte" generateFesaValueItem="true" fesaFieldName="RW_byte_fesa">
+                <scalar format="byte"/>
+            </Setting-Register>
+            <Setting-Register name="RW_word" generateFesaValueItem="true" fesaFieldName="RW_word_fesa">
+                <scalar format="word"/>
+            </Setting-Register>
+            <Setting-Register name="RW_dword" generateFesaValueItem="true" fesaFieldName="RW_dword_fesa">
+                <scalar format="dword"/>
+            </Setting-Register>
+            <Setting-Register name="RW_int" generateFesaValueItem="true" fesaFieldName="RW_int_fesa">
+                <scalar format="int"/>
+            </Setting-Register>
+            <Setting-Register name="RW_dint" generateFesaValueItem="true" fesaFieldName="RW_dint_fesa">
+                <scalar format="dint"/>
+            </Setting-Register>
+            <Setting-Register name="RW_real" generateFesaValueItem="true" fesaFieldName="RW_real_fesa">
+                <scalar format="real"/>
+            </Setting-Register>
+            <Setting-Register name="RW_dt" generateFesaValueItem="true" fesaFieldName="RW_dt_fesa">
+                <scalar format="dt"/>
+            </Setting-Register>
+            <Setting-Register name="RW2_int8" generateFesaValueItem="true">
+                <array2D dim1="2" dim2="2" format="int8"/>
+            </Setting-Register>
+            <Setting-Register name="RW2_uint8" generateFesaValueItem="true" fesaFieldName="RW2_uint8_fesa">
+                <array2D dim1="2" dim2="2" format="uint8"/>
+            </Setting-Register>
+            <Setting-Register name="RW2_int16" generateFesaValueItem="true" fesaFieldName="RW2_int16_fesa">
+                <array2D dim1="2" dim2="2" format="int16"/>
+            </Setting-Register>
+            <Setting-Register name="RW2_uint16" generateFesaValueItem="true" fesaFieldName="RW2_uint16_fesa">
+                <array2D dim1="2" dim2="2" format="uint16"/>
+            </Setting-Register>
+            <Setting-Register name="RW2_int32" generateFesaValueItem="true" fesaFieldName="RW2_int32_fesa">
+                <array2D dim1="2" dim2="2" format="int32"/>
+            </Setting-Register>
+            <Setting-Register name="RW2_uint32" generateFesaValueItem="true" fesaFieldName="RW2_uint32_fesa">
+                <array2D dim1="2" dim2="2" format="uint32"/>
+            </Setting-Register>
+            <!-- <Register name="RW_int64" format="int64" synchro="MASTER" generateFesaValueItem="true" fesaFieldName="RW_int64_fesa" array-dim1="2" array-dim2="2"/> not Supported for Beckhoff, Siemens and Schneider -->
+            <!--<Register name="RW_uint64" format="uint64" synchro="MASTER" generateFesaValueItem="true" fesaFieldName="RW_uint64_fesa" array-dim1="2" array-dim2="2"/> not Supported for Beckhoff, Siemens and Schneider -->
+            <Setting-Register name="RW2_float32" generateFesaValueItem="true" fesaFieldName="RW2_float32_fesa">
+                <array2D dim1="2" dim2="2" format="float32"/>
+            </Setting-Register>
+            <!--<Register name="RW_float64" format="float64" synchro="MASTER" generateFesaValueItem="true" fesaFieldName="RW_float64_fesa" array-dim1="2" array-dim2="2"/> not Supported for Rabbit, Beckhoff, Siemens and Schneider -->
+            <!-- <Register name="RW_string" format="string" synchro="MASTER" generateFesaValueItem="true" fesaFieldName="RW_string_fesa" array-dim1="2" array-dim2="2"/> 2d string arrays not supported in FESA -->
+            <Setting-Register name="RW2_date" generateFesaValueItem="true" fesaFieldName="RW2_date_fesa">
+                <array2D dim1="2" dim2="2" format="date"/>
+            </Setting-Register>
+            <Setting-Register name="RW2_char" generateFesaValueItem="true" fesaFieldName="RW2_char_fesa">
+                <array2D dim1="2" dim2="2" format="char"/>
+            </Setting-Register>
+            <Setting-Register name="RW2_byte" generateFesaValueItem="true" fesaFieldName="RW2_byte_fesa">
+                <array2D dim1="2" dim2="2" format="byte"/>
+            </Setting-Register>
+            <Setting-Register name="RW2_word" generateFesaValueItem="true" fesaFieldName="RW2_word_fesa">
+                <array2D dim1="2" dim2="2" format="word"/>
+            </Setting-Register>
+            <Setting-Register name="RW2_dword" generateFesaValueItem="true" fesaFieldName="RW2_dword_fesa">
+                <array2D dim1="2" dim2="2" format="dword"/>
+            </Setting-Register>
+            <Setting-Register name="RW2_int" generateFesaValueItem="true" fesaFieldName="RW2_int_fesa">
+                <array2D dim1="2" dim2="2" format="int"/>
+            </Setting-Register>
+            <Setting-Register name="RW2_dint" generateFesaValueItem="true" fesaFieldName="RW2_dint_fesa">
+                <array2D dim1="2" dim2="2" format="dint"/>
+            </Setting-Register>
+            <Setting-Register name="RW2_real" generateFesaValueItem="true" fesaFieldName="RW2_real_fesa">
+                <array2D dim1="2" dim2="2" format="real"/>
+            </Setting-Register>
+            <Setting-Register name="RW2_dt" generateFesaValueItem="true" fesaFieldName="RW2_dt_fesa">
+                <array2D dim1="2" dim2="2" format="dt"/>
+            </Setting-Register>
+            <Setting-Register name="RW_enum" generateFesaValueItem="true" fesaFieldName="RW_enum_fesa">
+                <custom-type-scalar custom-type-name-ref="TEST_ENUM"/>
+            </Setting-Register>
+        </Setting-Block>
+        <Command-Block name="MyWOBlock" generateFesaProperty="true" fesaPropertyName="MyWOBlockProp">
+            <Setting-Register name="WO_int8" generateFesaValueItem="true">
+                <array dim="10" format="int8"/>
+            </Setting-Register>
+            <Setting-Register name="WO_uint8" generateFesaValueItem="true" fesaFieldName="WO_uint8_fesa">
+                <array dim="10" format="uint8"/>
+            </Setting-Register>
+            <Setting-Register name="WO_int16" generateFesaValueItem="true" fesaFieldName="WO_int16_fesa">
+                <array dim="10" format="int16"/>
+            </Setting-Register>
+            <Setting-Register name="WO_uint16" generateFesaValueItem="true" fesaFieldName="WO_uint16_fesa">
+                <array dim="10" format="uint16"/>
+            </Setting-Register>
+            <Setting-Register name="WO_int32" generateFesaValueItem="true" fesaFieldName="WO_int32_fesa">
+                <array dim="10" format="int32"/>
+            </Setting-Register>
+            <Setting-Register name="WO_uint32" generateFesaValueItem="true" fesaFieldName="WO_uint32_fesa">
+                <array dim="10" format="uint32"/>
+            </Setting-Register>
+            <!--<Register name="WO_int64" format="int64" synchro="SLAVE" generateFesaValueItem="true" fesaFieldName="WO_int64_fesa" array-dim1="10"/> not Supported for Beckhoff, Siemens and Schneider -->
+            <!--<Register name="WO_uint64" format="uint64" synchro="SLAVE" generateFesaValueItem="true" fesaFieldName="WO_uint64_fesa" array-dim1="10"/> not Supported for Beckhoff, Siemens and Schneider -->
+            <Setting-Register name="WO_float32" generateFesaValueItem="true" fesaFieldName="WO_float32_fesa">
+                <array dim="10" format="float32"/>
+            </Setting-Register>
+            <!--<Register name="WO_float64" format="float64" synchro="SLAVE" generateFesaValueItem="true" fesaFieldName="WO_float64_fesa" array-dim1="10"/> not Supported for Rabbit, Beckhoff, Siemens and Schneider -->
+            <Setting-Register name="WO_string" generateFesaValueItem="true" fesaFieldName="WO_string_fesa">
+                <stringArray dim="10" string-length="64" format="string"/>
+            </Setting-Register>
+            <Setting-Register name="WO_date" generateFesaValueItem="true" fesaFieldName="WO_date_fesa">
+                <array dim="10" format="date"/>
+            </Setting-Register>
+            <Setting-Register name="WO_char" generateFesaValueItem="true" fesaFieldName="WO_char_fesa">
+                <array dim="10" format="char"/>
+            </Setting-Register>
+            <Setting-Register name="WO_byte" generateFesaValueItem="true" fesaFieldName="WO_byte_fesa">
+                <array dim="10" format="byte"/>
+            </Setting-Register>
+            <Setting-Register name="WO_word" generateFesaValueItem="true" fesaFieldName="WO_word_fesa">
+                <array dim="10" format="word"/>
+            </Setting-Register>
+            <Setting-Register name="WO_dword" generateFesaValueItem="true" fesaFieldName="WO_dword_fesa">
+                <array dim="10" format="dword"/>
+            </Setting-Register>
+            <Setting-Register name="WO_int" generateFesaValueItem="true" fesaFieldName="WO_int_fesa">
+                <array dim="10" format="int"/>
+            </Setting-Register>
+            <Setting-Register name="WO_dint" generateFesaValueItem="true" fesaFieldName="WO_dint_fesa">
+                <array dim="10" format="dint"/>
+            </Setting-Register>
+            <Setting-Register name="WO_real" generateFesaValueItem="true" fesaFieldName="WO_real_fesa">
+                <array dim="10" format="real"/>
+            </Setting-Register>
+            <Setting-Register name="WO_dt" generateFesaValueItem="true" fesaFieldName="WO_dt_fesa">
+                <array dim="10" format="dt"/>
+            </Setting-Register>
+            <Setting-Register name="WO_enum" generateFesaValueItem="true" fesaFieldName="WO_enum_fesa">
+                <custom-type-array dim="10" custom-type-name-ref="TEST_ENUM"/>
+            </Setting-Register>
+        </Command-Block>
+        <Configuration-Block name="MyCBlock" generateFesaProperty="true" fesaPropertyName="MyCBlockProp">
+            <Configuration-Register name="C_int8" generateFesaValueItem="true">
+                <array2D dim1="2" dim2="2" format="int8"/>
+            </Configuration-Register>
+            <Configuration-Register name="C_uint8" generateFesaValueItem="true" fesaFieldName="C_uint8_fesa">
+                <array2D dim1="2" dim2="2" format="uint8"/>
+            </Configuration-Register>
+            <Configuration-Register name="C_int16" generateFesaValueItem="true" fesaFieldName="C_int16_fesa">
+                <array2D dim1="2" dim2="2" format="int16"/>
+            </Configuration-Register>
+            <Configuration-Register name="C_uint16" generateFesaValueItem="true" fesaFieldName="C_uint16_fesa">
+                <array2D dim1="2" dim2="2" format="uint16"/>
+            </Configuration-Register>
+            <Configuration-Register name="C_int32" generateFesaValueItem="true" fesaFieldName="C_int32_fesa">
+                <array2D dim1="2" dim2="2" format="int32"/>
+            </Configuration-Register>
+            <Configuration-Register name="C_uint32" generateFesaValueItem="true" fesaFieldName="C_uint32_fesa">
+                <array2D dim1="2" dim2="2" format="uint32"/>
+            </Configuration-Register>
+            <!--<Register name="C_int64" format="int64" synchro="MASTER" generateFesaValueItem="true" fesaFieldName="C_int64_fesa" array-dim1="2" array-dim2="2"/> not Supported for Rabbit, Beckhoff, Siemens and Schneider -->
+            <!--<Register name="C_uint64" format="uint64" synchro="MASTER" generateFesaValueItem="true" fesaFieldName="C_uint64_fesa" array-dim1="2" array-dim2="2"/> not Supported for Rabbit, Beckhoff, Siemens and Schneider -->
+            <Configuration-Register name="C_float32" generateFesaValueItem="true" fesaFieldName="C_float32_fesa">
+                <array2D dim1="2" dim2="2" format="float32"/>
+            </Configuration-Register>
+            <!--<Register name="C_float64" format="float64" synchro="MASTER" generateFesaValueItem="true" fesaFieldName="C_float64_fesa" array-dim1="2" array-dim2="2"/> not Supported for Rabbit, Beckhoff, Siemens and Schneider -->
+            <!--<Configuration-Register name="C_string" generateFesaValueItem="true" fesaFieldName="C_string_fesa">
+                <stringArray2D dim1="2" dim2="2" string-length="64" format="string"/>
+            </Configuration-Register>-->
+            <Configuration-Register name="C_date" generateFesaValueItem="true" fesaFieldName="C_date_fesa">
+                <array2D dim1="2" dim2="2" format="date"/>
+            </Configuration-Register>
+            <Configuration-Register name="C_char" generateFesaValueItem="true" fesaFieldName="C_char_fesa">
+                <array2D dim1="2" dim2="2" format="char"/>
+            </Configuration-Register>
+            <Configuration-Register name="C_byte" generateFesaValueItem="true" fesaFieldName="C_byte_fesa">
+                <array2D dim1="2" dim2="2" format="byte"/>
+            </Configuration-Register>
+            <Configuration-Register name="C_word" generateFesaValueItem="true" fesaFieldName="C_word_fesa">
+                <array2D dim1="2" dim2="2" format="word"/>
+            </Configuration-Register>
+            <Configuration-Register name="C_dword" generateFesaValueItem="true" fesaFieldName="C_dword_fesa">
+                <array2D dim1="2" dim2="2" format="dword"/>
+            </Configuration-Register>
+            <Configuration-Register name="C_int" generateFesaValueItem="true" fesaFieldName="C_int_fesa">
+                <array2D dim1="2" dim2="2" format="int"/>
+            </Configuration-Register>
+            <Configuration-Register name="C_dint" generateFesaValueItem="true" fesaFieldName="C_dint_fesa">
+                <array2D dim1="2" dim2="2" format="dint"/>
+            </Configuration-Register>
+            <Configuration-Register name="C_real" generateFesaValueItem="true" fesaFieldName="C_real_fesa">
+                <array2D dim1="2" dim2="2" format="real"/>
+            </Configuration-Register>
+            <Configuration-Register name="C_dt" generateFesaValueItem="true" fesaFieldName="C_dt_fesa">
+                <array2D dim1="2" dim2="2" format="dt"/>
+            </Configuration-Register>
+        </Configuration-Block>
+        <custom-types>
+            <enum name="TEST_ENUM">
+                <item access="RW" value="0" symbol="OK"/>
+                <item access="RW" value="1" symbol="WARNING"/>
+                <item access="RW" value="2" symbol="ERROR"/>
+                <item access="RW" value="3" symbol="UNKNOWN"/>
+            </enum>  
+        </custom-types>
+	</SILECS-Class>
+</SILECS-Design>
diff --git a/test/AllTypesFESA/src/AllTypesFESA/Common/AllTypesFESA.cpp b/test/AllTypesFESA/src/AllTypesFESA/Common/AllTypesFESA.cpp
new file mode 100644
index 0000000..b1682f3
--- /dev/null
+++ b/test/AllTypesFESA/src/AllTypesFESA/Common/AllTypesFESA.cpp
@@ -0,0 +1,1569 @@
+/*
+ * AllTypesFESA.cpp
+ *
+ * Generated by SILECS framework tools. Will be overwritten on regeneration.
+ */
+ 
+#include <AllTypesFESA/Common/AllTypesFESA.h>
+#include <silecs-communication/interface/utility/SilecsException.h>
+#include <fesa-core/Synchronization/NoneContext.h>
+#include <fesa-core/Synchronization/MultiplexingContext.h>
+ 
+namespace AllTypesFESA
+{
+    //Global objects of the SILECS class
+    Silecs::Service* AbstractAllTypesFESA::pService_ = NULL;
+    Silecs::PLCHandler* AbstractAllTypesFESA::pPLCHandler_ = NULL;
+    bool AbstractAllTypesFESA::isInitialized_ = false;
+    MyROBlock_Type	AllTypesFESA::MyROBlock("MyROBlock");
+    MyRWBlock_Type	AllTypesFESA::MyRWBlock("MyRWBlock");
+    MyWOBlock_Type	AllTypesFESA::MyWOBlock("MyWOBlock");
+    MyCBlock_Type	AllTypesFESA::MyCBlock("MyCBlock");
+    
+    //-------------------------------------------------------------------------------------------------------------
+    // Constructor & Destructor methods
+    
+    AbstractAllTypesFESA::AbstractAllTypesFESA(std::string blockName): blockName_(blockName) {}
+    AbstractAllTypesFESA::~AbstractAllTypesFESA() {}
+    
+    MyROBlock_Type::MyROBlock_Type(std::string name): AbstractAllTypesFESA(name) {}
+    MyROBlock_Type::~MyROBlock_Type() {}
+    
+    MyRWBlock_Type::MyRWBlock_Type(std::string name): AbstractAllTypesFESA(name) {}
+    MyRWBlock_Type::~MyRWBlock_Type() {}
+    
+    MyWOBlock_Type::MyWOBlock_Type(std::string name): AbstractAllTypesFESA(name) {}
+    MyWOBlock_Type::~MyWOBlock_Type() {}
+    
+    MyCBlock_Type::MyCBlock_Type(std::string name): AbstractAllTypesFESA(name) {}
+    MyCBlock_Type::~MyCBlock_Type() {}
+    
+    //---------------------------------------------------------------------------------------------------------
+    // Set-up the SILECS components for the AbstractAllTypesFESA class (service & plchandler)
+
+    void AbstractAllTypesFESA::setup(const ServiceLocator* serviceLocator)
+    {
+        try
+        {
+            // Instantiate the singleton of the SILECS Service
+            pService_ = Silecs::Service::getInstance();
+
+            // Enable the SILECS diagnostic with user topics if any
+            pService_->setArguments(serviceLocator->getUsrCmdArgs());
+
+            GlobalDevice* pGlobalDevice = serviceLocator->getGlobalDevice();
+            pPLCHandler_ = &pService_->getPLCHandler();
+            isInitialized_ = true;
+
+            // Connect each PLC of the PLCHandler that is referred from the FESA instance
+            std::vector<Device*> pDeviceCol = serviceLocator->getDeviceCollection();
+            for(std::vector<Device*>::iterator pDeviceIter=pDeviceCol.begin(); pDeviceIter!= pDeviceCol.end(); pDeviceIter++)
+            {
+                Device* pDevice = *pDeviceIter;
+
+                // Retrieve the PLC related to the current FESA device
+                // (from 'plcHostName' FESA field defined on that purpose).
+                Silecs::PLC* pPLC = &pPLCHandler_->getPLC(pDevice->plcHostName.get());
+
+                // Update PLC registers from related FESA fields just before synchronising done at connection time
+                updatePLCRegisters(pPLC, serviceLocator);
+
+                // Connect the PLC if not already connected
+                if (!pPLC->isEnabled())
+                {   pPLC->connect(/*connectNow=*/true);
+                    if (pPLC->isConnected())
+                        updateFesaFields(pPLC, serviceLocator);
+                }
+            }
+        }
+        catch (const Silecs::SilecsException& ex)
+        {
+            throw fesa::FesaException(__FILE__, __LINE__, ex.getMessage());
+        }
+    }
+
+    //---------------------------------------------------------------------------------------------------------
+    // Release all the SILECS resources
+    void AbstractAllTypesFESA::cleanup()
+    {
+        // Attention! This method is responsible to stop all the PLC connections
+        // and to remove all the SILECS resources (PLCs, Devices, Registers, ..)
+        // Calling method must ensure that no process is currently accessing these resources before cleaning.
+        //
+        Silecs::Service::deleteInstance();
+    }
+
+    //---------------------------------------------------------------------------------------------------------
+    //automatically called by the setup method at connection time)
+    void AbstractAllTypesFESA::updatePLCRegisters(Silecs::PLC* pPLC, const ServiceLocator* serviceLocator)
+    {
+        fesa::NoneContext noneContext;
+    
+        AllTypesFESA::MyCBlock.setPLCDevices(pPLC, serviceLocator, false, &noneContext);
+    }
+
+    //---------------------------------------------------------------------------------------------------------
+    //automatically called by the setup method at connection time)
+    void AbstractAllTypesFESA::updateFesaFields(Silecs::PLC* pPLC, const ServiceLocator* serviceLocator)
+    {
+        fesa::NoneContext noneContext;
+    
+        AllTypesFESA::MyROBlock.getPLCDevices(pPLC, serviceLocator, false, &noneContext);
+        AllTypesFESA::MyRWBlock.getPLCDevices(pPLC, serviceLocator, false, &noneContext);
+    }
+
+    
+    //---------------------------------------------------------------------------------------------------------
+    // General methods to synchronize the FESA fields and related PLC registers of the FESA server
+    // with or without PLC side access (send/recv) if requested.
+    // get_ : [receive block from PLC +] update FESA fields with related PLC registers
+    // set_ : update PLC registers with related FESA fields [+ send block to PLC]
+
+    //---------------------------------------------------------------------------------------------------------
+
+    void AbstractAllTypesFESA::getAllDevices(const ServiceLocator* serviceLocator, const bool recvNow, MultiplexingContext* pContext)
+    {
+        if (recvNow) thePLCHandler()->recv(blockName_);
+
+        std::vector<Device*> deviceCol = serviceLocator->getDeviceCollection();
+        for(std::vector<Device*>::iterator pDeviceIter=deviceCol.begin(); pDeviceIter!= deviceCol.end(); pDeviceIter++)
+        {  getOneDevice(*pDeviceIter, false, pContext);
+        }
+    }
+
+    void AbstractAllTypesFESA::getPLCDevices(Silecs::PLC* pPLC, const ServiceLocator* serviceLocator, const bool recvNow, MultiplexingContext* pContext)
+    {
+        if (recvNow) pPLC->recv(blockName_);
+
+        std::vector<Device*> deviceCol = serviceLocator->getDeviceCollection();
+        for(std::vector<Device*>::iterator pDeviceIter=deviceCol.begin(); pDeviceIter!= deviceCol.end(); pDeviceIter++)
+        {   if ((*pDeviceIter)->plcHostName.get() == pPLC->getName())
+            {  getOneDevice(*pDeviceIter, false, pContext);
+            }
+        }
+    }
+
+    void AbstractAllTypesFESA::getSomeDevices(std::vector<Device*> deviceCol, const bool sendNow, MultiplexingContext* pContext)
+    {
+        for(std::vector<Device*>::iterator pDeviceIter=deviceCol.begin(); pDeviceIter!= deviceCol.end(); pDeviceIter++)
+        {    getOneDevice(*pDeviceIter, sendNow, pContext);
+        }
+    }
+
+    void AbstractAllTypesFESA::getOneDevice(Device* pDevice, const bool recvNow, MultiplexingContext* pContext) {};
+
+    //---------------------------------------------------------------------------------------------------------
+
+    void AbstractAllTypesFESA::setAllDevices(const ServiceLocator* serviceLocator, bool sendNow, MultiplexingContext* pContext)
+    {
+        std::vector<Device*> deviceCol = serviceLocator->getDeviceCollection();
+        for(std::vector<Device*>::iterator pDeviceIter=deviceCol.begin(); pDeviceIter!= deviceCol.end(); pDeviceIter++)
+        {  setOneDevice(*pDeviceIter, false, pContext);
+        }
+
+        if (sendNow) thePLCHandler()->send(blockName_);
+    }
+
+    void AbstractAllTypesFESA::setPLCDevices(Silecs::PLC* pPLC, const ServiceLocator* serviceLocator, bool sendNow, MultiplexingContext* pContext)
+    {
+        std::vector<Device*> deviceCol = serviceLocator->getDeviceCollection();
+        for(std::vector<Device*>::iterator pDeviceIter=deviceCol.begin(); pDeviceIter!= deviceCol.end(); pDeviceIter++)
+        {   if ((*pDeviceIter)->plcHostName.get() == pPLC->getName())
+            {  setOneDevice(*pDeviceIter, false, pContext);
+            }
+        }
+
+        if (sendNow) pPLC->send(blockName_);
+    }
+
+    void AbstractAllTypesFESA::setSomeDevices(std::vector<Device*> deviceCol, bool sendNow, MultiplexingContext* pContext)
+    {
+        for(std::vector<Device*>::iterator pDeviceIter=deviceCol.begin(); pDeviceIter!= deviceCol.end(); pDeviceIter++)
+        {    setOneDevice(*pDeviceIter, sendNow, pContext);
+        }
+    }
+
+    void AbstractAllTypesFESA::setOneDevice(Device* pDevice, const bool sendNow, MultiplexingContext* pContext) {};
+    
+    void AbstractAllTypesFESA::checkInitialized()
+    {
+        if( !isInitialized_ )
+        {
+            throw fesa::FesaException(__FILE__, __LINE__, "SILECS-Service not initialized yet - "
+                "AllTypesFESA::setup needs to be called before any plc-interaction can be done");
+        }
+    };
+
+    //---------------------------------------------------------------------------------------------------------
+    
+    void MyROBlock_Type::getOneDevice(Device* pDevice, const bool recvNow, MultiplexingContext* pContext)
+    {
+        checkInitialized();
+        Silecs::PLC* pPLC  = &pPLCHandler_->getPLC(pDevice->plcHostName.get());
+        Silecs::Device* pPLCDevice = pPLC->getDeploy().getDesign("AllTypesFESA").getDevice(pDevice->plcDeviceLabel.get());
+
+        if (recvNow) pPLCDevice -> recv(blockName_);
+    
+        pDevice->RO_int8.set( pPLCDevice->getRegister("RO_int8")->getVal<int8_t>(), pContext);
+        pDevice->RO_uint8_fesa.set( pPLCDevice->getRegister("RO_uint8")->getVal<uint8_t>(), pContext);
+        pDevice->RO_int16_fesa.set( pPLCDevice->getRegister("RO_int16")->getVal<int16_t>(), pContext);
+        pDevice->RO_uint16_fesa.set( pPLCDevice->getRegister("RO_uint16")->getVal<uint16_t>(), pContext);
+        pDevice->RO_int32_fesa.set( pPLCDevice->getRegister("RO_int32")->getVal<int32_t>(), pContext);
+        pDevice->RO_uint32_fesa.set( pPLCDevice->getRegister("RO_uint32")->getVal<uint32_t>(), pContext);
+        pDevice->RO_float32_fesa.set( pPLCDevice->getRegister("RO_float32")->getVal<float>(), pContext);
+        {
+            auto& pRegister = pPLCDevice->getRegister("RO_string");
+            pDevice->RO_string_fesa.set(pRegister->getVal<std::string>().c_str(), pContext);
+        }
+
+        pDevice->RO_date_fesa.set( pPLCDevice->getRegister("RO_date")->getVal<double>(), pContext);
+        pDevice->RO_char_fesa.set( pPLCDevice->getRegister("RO_char")->getVal<int8_t>(), pContext);
+        pDevice->RO_byte_fesa.set( pPLCDevice->getRegister("RO_byte")->getVal<uint8_t>(), pContext);
+        pDevice->RO_word_fesa.set( pPLCDevice->getRegister("RO_word")->getVal<uint16_t>(), pContext);
+        pDevice->RO_dword_fesa.set( pPLCDevice->getRegister("RO_dword")->getVal<uint32_t>(), pContext);
+        pDevice->RO_int_fesa.set( pPLCDevice->getRegister("RO_int")->getVal<int16_t>(), pContext);
+        pDevice->RO_dint_fesa.set( pPLCDevice->getRegister("RO_dint")->getVal<int32_t>(), pContext);
+        pDevice->RO_real_fesa.set( pPLCDevice->getRegister("RO_real")->getVal<float>(), pContext);
+        pDevice->RO_dt_fesa.set( pPLCDevice->getRegister("RO_dt")->getVal<double>(), pContext);
+        pDevice->RO_enum_fesa.set(static_cast<TEST_ENUM::TEST_ENUM>(pPLCDevice->getRegister("RO_enum")->getVal<int32_t>()), pContext);
+    }
+
+    void MyRWBlock_Type::getOneDevice(Device* pDevice, const bool recvNow, MultiplexingContext* pContext)
+    {
+        checkInitialized();
+        Silecs::PLC* pPLC  = &pPLCHandler_->getPLC(pDevice->plcHostName.get());
+        Silecs::Device* pPLCDevice = pPLC->getDeploy().getDesign("AllTypesFESA").getDevice(pDevice->plcDeviceLabel.get());
+
+        if (recvNow) pPLCDevice -> recv(blockName_);
+    
+        pDevice->RW_int8.set( pPLCDevice->getRegister("RW_int8")->getVal<int8_t>(), pContext);
+        pDevice->RW_uint8_fesa.set( pPLCDevice->getRegister("RW_uint8")->getVal<uint8_t>(), pContext);
+        pDevice->RW_int16_fesa.set( pPLCDevice->getRegister("RW_int16")->getVal<int16_t>(), pContext);
+        pDevice->RW_uint16_fesa.set( pPLCDevice->getRegister("RW_uint16")->getVal<uint16_t>(), pContext);
+        pDevice->RW_int32_fesa.set( pPLCDevice->getRegister("RW_int32")->getVal<int32_t>(), pContext);
+        pDevice->RW_uint32_fesa.set( pPLCDevice->getRegister("RW_uint32")->getVal<uint32_t>(), pContext);
+        pDevice->RW_float32_fesa.set( pPLCDevice->getRegister("RW_float32")->getVal<float>(), pContext);
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW_string");
+            pDevice->RW_string_fesa.set(pRegister->getVal<std::string>().c_str(), pContext);
+        }
+
+        pDevice->RW_date_fesa.set( pPLCDevice->getRegister("RW_date")->getVal<double>(), pContext);
+        pDevice->RW_char_fesa.set( pPLCDevice->getRegister("RW_char")->getVal<int8_t>(), pContext);
+        pDevice->RW_byte_fesa.set( pPLCDevice->getRegister("RW_byte")->getVal<uint8_t>(), pContext);
+        pDevice->RW_word_fesa.set( pPLCDevice->getRegister("RW_word")->getVal<uint16_t>(), pContext);
+        pDevice->RW_dword_fesa.set( pPLCDevice->getRegister("RW_dword")->getVal<uint32_t>(), pContext);
+        pDevice->RW_int_fesa.set( pPLCDevice->getRegister("RW_int")->getVal<int16_t>(), pContext);
+        pDevice->RW_dint_fesa.set( pPLCDevice->getRegister("RW_dint")->getVal<int32_t>(), pContext);
+        pDevice->RW_real_fesa.set( pPLCDevice->getRegister("RW_real")->getVal<float>(), pContext);
+        pDevice->RW_dt_fesa.set( pPLCDevice->getRegister("RW_dt")->getVal<double>(), pContext);
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_int8");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            pDevice->RW2_int8.set(pRegister->getRefArray2D<int8_t>(dim1, dim2), dim1, dim2, pContext);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_uint8");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint8_t* arrData = pRegister->getRefArray2D<uint8_t>(dim1, dim2);
+            std::vector<int16_t> RW2_uint8(arrData, arrData + dim1 * dim2);
+            pDevice->RW2_uint8_fesa.set(RW2_uint8.data(), dim1, dim2, pContext);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_int16");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            pDevice->RW2_int16_fesa.set(pRegister->getRefArray2D<int16_t>(dim1, dim2), dim1, dim2, pContext);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_uint16");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint16_t* arrData = pRegister->getRefArray2D<uint16_t>(dim1, dim2);
+            std::vector<int32_t> RW2_uint16(arrData, arrData + dim1 * dim2);
+            pDevice->RW2_uint16_fesa.set(RW2_uint16.data(), dim1, dim2, pContext);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_int32");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            pDevice->RW2_int32_fesa.set(pRegister->getRefArray2D<int32_t>(dim1, dim2), dim1, dim2, pContext);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_uint32");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t* arrData = pRegister->getRefArray2D<uint32_t>(dim1, dim2);
+            std::vector<int64_t> RW2_uint32(arrData, arrData + dim1 * dim2);
+            pDevice->RW2_uint32_fesa.set(RW2_uint32.data(), dim1, dim2, pContext);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_float32");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            pDevice->RW2_float32_fesa.set(pRegister->getRefArray2D<float>(dim1, dim2), dim1, dim2, pContext);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_date");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            pDevice->RW2_date_fesa.set(pRegister->getRefArray2D<double>(dim1, dim2), dim1, dim2, pContext);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_char");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            pDevice->RW2_char_fesa.set(pRegister->getRefArray2D<int8_t>(dim1, dim2), dim1, dim2, pContext);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_byte");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint8_t* arrData = pRegister->getRefArray2D<uint8_t>(dim1, dim2);
+            std::vector<int16_t> RW2_byte(arrData, arrData + dim1 * dim2);
+            pDevice->RW2_byte_fesa.set(RW2_byte.data(), dim1, dim2, pContext);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_word");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint16_t* arrData = pRegister->getRefArray2D<uint16_t>(dim1, dim2);
+            std::vector<int32_t> RW2_word(arrData, arrData + dim1 * dim2);
+            pDevice->RW2_word_fesa.set(RW2_word.data(), dim1, dim2, pContext);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_dword");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t* arrData = pRegister->getRefArray2D<uint32_t>(dim1, dim2);
+            std::vector<int64_t> RW2_dword(arrData, arrData + dim1 * dim2);
+            pDevice->RW2_dword_fesa.set(RW2_dword.data(), dim1, dim2, pContext);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_int");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            pDevice->RW2_int_fesa.set(pRegister->getRefArray2D<int16_t>(dim1, dim2), dim1, dim2, pContext);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_dint");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            pDevice->RW2_dint_fesa.set(pRegister->getRefArray2D<int32_t>(dim1, dim2), dim1, dim2, pContext);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_real");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            pDevice->RW2_real_fesa.set(pRegister->getRefArray2D<float>(dim1, dim2), dim1, dim2, pContext);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_dt");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            pDevice->RW2_dt_fesa.set(pRegister->getRefArray2D<double>(dim1, dim2), dim1, dim2, pContext);
+        }
+
+        pDevice->RW_enum_fesa.set(static_cast<TEST_ENUM::TEST_ENUM>(pPLCDevice->getRegister("RW_enum")->getVal<int32_t>()), pContext);
+    }
+
+    void MyRWBlock_Type::getOneDevice(Device* pDevice, MyRWBlockPropPropertyData& data, const bool recvNow)
+    {
+        checkInitialized();
+        Silecs::PLC* pPLC  = &pPLCHandler_->getPLC(pDevice->plcHostName.get());
+        Silecs::Device* pPLCDevice = pPLC->getDeploy().getDesign("AllTypesFESA").getDevice(pDevice->plcDeviceLabel.get());
+
+        if (recvNow) pPLCDevice -> recv(blockName_);
+    
+        data.setRW_int8(pPLCDevice->getRegister("RW_int8")->getVal<int8_t>());
+        data.setRW_uint8_fesa(pPLCDevice->getRegister("RW_uint8")->getVal<uint8_t>());
+        data.setRW_int16_fesa(pPLCDevice->getRegister("RW_int16")->getVal<int16_t>());
+        data.setRW_uint16_fesa(pPLCDevice->getRegister("RW_uint16")->getVal<uint16_t>());
+        data.setRW_int32_fesa(pPLCDevice->getRegister("RW_int32")->getVal<int32_t>());
+        data.setRW_uint32_fesa(pPLCDevice->getRegister("RW_uint32")->getVal<uint32_t>());
+        data.setRW_float32_fesa(pPLCDevice->getRegister("RW_float32")->getVal<float>());
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW_string");
+            data.setRW_string_fesa(pRegister->getVal<std::string>().c_str());
+        }
+
+        data.setRW_date_fesa(pPLCDevice->getRegister("RW_date")->getVal<double>());
+        data.setRW_char_fesa(pPLCDevice->getRegister("RW_char")->getVal<int8_t>());
+        data.setRW_byte_fesa(pPLCDevice->getRegister("RW_byte")->getVal<uint8_t>());
+        data.setRW_word_fesa(pPLCDevice->getRegister("RW_word")->getVal<uint16_t>());
+        data.setRW_dword_fesa(pPLCDevice->getRegister("RW_dword")->getVal<uint32_t>());
+        data.setRW_int_fesa(pPLCDevice->getRegister("RW_int")->getVal<int16_t>());
+        data.setRW_dint_fesa(pPLCDevice->getRegister("RW_dint")->getVal<int32_t>());
+        data.setRW_real_fesa(pPLCDevice->getRegister("RW_real")->getVal<float>());
+        data.setRW_dt_fesa(pPLCDevice->getRegister("RW_dt")->getVal<double>());
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_int8");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            data.setRW2_int8(pRegister->getRefArray2D<int8_t>(dim1, dim2), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_uint8");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint8_t* arrData = pRegister->getRefArray2D<uint8_t>(dim1, dim2);
+            std::vector<int16_t> RW2_uint8(arrData, arrData + dim1 * dim2);
+            data.setRW2_uint8_fesa(RW2_uint8.data(), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_int16");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            data.setRW2_int16_fesa(pRegister->getRefArray2D<int16_t>(dim1, dim2), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_uint16");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint16_t* arrData = pRegister->getRefArray2D<uint16_t>(dim1, dim2);
+            std::vector<int32_t> RW2_uint16(arrData, arrData + dim1 * dim2);
+            data.setRW2_uint16_fesa(RW2_uint16.data(), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_int32");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            data.setRW2_int32_fesa(pRegister->getRefArray2D<int32_t>(dim1, dim2), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_uint32");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t* arrData = pRegister->getRefArray2D<uint32_t>(dim1, dim2);
+            std::vector<int64_t> RW2_uint32(arrData, arrData + dim1 * dim2);
+            data.setRW2_uint32_fesa(RW2_uint32.data(), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_float32");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            data.setRW2_float32_fesa(pRegister->getRefArray2D<float>(dim1, dim2), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_date");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            data.setRW2_date_fesa(pRegister->getRefArray2D<double>(dim1, dim2), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_char");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            data.setRW2_char_fesa(pRegister->getRefArray2D<int8_t>(dim1, dim2), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_byte");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint8_t* arrData = pRegister->getRefArray2D<uint8_t>(dim1, dim2);
+            std::vector<int16_t> RW2_byte(arrData, arrData + dim1 * dim2);
+            data.setRW2_byte_fesa(RW2_byte.data(), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_word");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint16_t* arrData = pRegister->getRefArray2D<uint16_t>(dim1, dim2);
+            std::vector<int32_t> RW2_word(arrData, arrData + dim1 * dim2);
+            data.setRW2_word_fesa(RW2_word.data(), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_dword");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t* arrData = pRegister->getRefArray2D<uint32_t>(dim1, dim2);
+            std::vector<int64_t> RW2_dword(arrData, arrData + dim1 * dim2);
+            data.setRW2_dword_fesa(RW2_dword.data(), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_int");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            data.setRW2_int_fesa(pRegister->getRefArray2D<int16_t>(dim1, dim2), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_dint");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            data.setRW2_dint_fesa(pRegister->getRefArray2D<int32_t>(dim1, dim2), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_real");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            data.setRW2_real_fesa(pRegister->getRefArray2D<float>(dim1, dim2), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_dt");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            data.setRW2_dt_fesa(pRegister->getRefArray2D<double>(dim1, dim2), dim1, dim2);
+        }
+
+        data.setRW_enum_fesa(static_cast<TEST_ENUM::TEST_ENUM>(pPLCDevice->getRegister("RW_enum")->getVal<int32_t>()));
+    }
+    
+    void MyRWBlock_Type::setOneDevice(Device* pDevice, const bool sendNow, MultiplexingContext* pContext)
+    {
+        checkInitialized();
+        Silecs::PLC* pPLC  = &pPLCHandler_->getPLC(pDevice->plcHostName.get());
+        Silecs::Device* pPLCDevice = pPLC->getDeploy().getDesign("AllTypesFESA").getDevice(pDevice->plcDeviceLabel.get());
+
+        pPLCDevice->getRegister("RW_int8")->setVal<int8_t>( pDevice->RW_int8.get(pContext));
+        pPLCDevice->getRegister("RW_uint8")->setVal<uint8_t>( (uint8_t)pDevice->RW_uint8_fesa.get(pContext));
+        pPLCDevice->getRegister("RW_int16")->setVal<int16_t>( pDevice->RW_int16_fesa.get(pContext));
+        pPLCDevice->getRegister("RW_uint16")->setVal<uint16_t>( (uint16_t)pDevice->RW_uint16_fesa.get(pContext));
+        pPLCDevice->getRegister("RW_int32")->setVal<int32_t>( pDevice->RW_int32_fesa.get(pContext));
+        pPLCDevice->getRegister("RW_uint32")->setVal<uint32_t>( (uint32_t)pDevice->RW_uint32_fesa.get(pContext));
+        pPLCDevice->getRegister("RW_float32")->setVal<float>( pDevice->RW_float32_fesa.get(pContext));
+        pPLCDevice->getRegister("RW_string")->setVal<std::string>(pDevice->RW_string_fesa.get(pContext));
+
+        pPLCDevice->getRegister("RW_date")->setVal<double>( pDevice->RW_date_fesa.get(pContext));
+        pPLCDevice->getRegister("RW_char")->setVal<int8_t>( pDevice->RW_char_fesa.get(pContext));
+        pPLCDevice->getRegister("RW_byte")->setVal<uint8_t>( (uint8_t)pDevice->RW_byte_fesa.get(pContext));
+        pPLCDevice->getRegister("RW_word")->setVal<uint16_t>( (uint16_t)pDevice->RW_word_fesa.get(pContext));
+        pPLCDevice->getRegister("RW_dword")->setVal<uint32_t>( (uint32_t)pDevice->RW_dword_fesa.get(pContext));
+        pPLCDevice->getRegister("RW_int")->setVal<int16_t>( pDevice->RW_int_fesa.get(pContext));
+        pPLCDevice->getRegister("RW_dint")->setVal<int32_t>( pDevice->RW_dint_fesa.get(pContext));
+        pPLCDevice->getRegister("RW_real")->setVal<float>( pDevice->RW_real_fesa.get(pContext));
+        pPLCDevice->getRegister("RW_dt")->setVal<double>( pDevice->RW_dt_fesa.get(pContext));
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_int8");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            pRegister->setValArray2D<int8_t>(pDevice->RW2_int8.get(fesaDim1, fesaDim2, pContext), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_uint8");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            const int16_t* RW2_uint8 = pDevice->RW2_uint8_fesa.get(fesaDim1, fesaDim2, pContext);
+            std::vector<uint8_t> data(RW2_uint8, RW2_uint8 + dim1 * dim2);
+            pRegister->setValArray2D<uint8_t>(data.data(), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_int16");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            pRegister->setValArray2D<int16_t>(pDevice->RW2_int16_fesa.get(fesaDim1, fesaDim2, pContext), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_uint16");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            const int32_t* RW2_uint16 = pDevice->RW2_uint16_fesa.get(fesaDim1, fesaDim2, pContext);
+            std::vector<uint16_t> data(RW2_uint16, RW2_uint16 + dim1 * dim2);
+            pRegister->setValArray2D<uint16_t>(data.data(), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_int32");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            pRegister->setValArray2D<int32_t>(pDevice->RW2_int32_fesa.get(fesaDim1, fesaDim2, pContext), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_uint32");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            const int64_t* RW2_uint32 = pDevice->RW2_uint32_fesa.get(fesaDim1, fesaDim2, pContext);
+            std::vector<uint32_t> data(RW2_uint32, RW2_uint32 + dim1 * dim2);
+            pRegister->setValArray2D<uint32_t>(data.data(), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_float32");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            pRegister->setValArray2D<float>(pDevice->RW2_float32_fesa.get(fesaDim1, fesaDim2, pContext), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_date");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            pRegister->setValArray2D<double>(pDevice->RW2_date_fesa.get(fesaDim1, fesaDim2, pContext), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_char");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            pRegister->setValArray2D<int8_t>(pDevice->RW2_char_fesa.get(fesaDim1, fesaDim2, pContext), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_byte");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            const int16_t* RW2_byte = pDevice->RW2_byte_fesa.get(fesaDim1, fesaDim2, pContext);
+            std::vector<uint8_t> data(RW2_byte, RW2_byte + dim1 * dim2);
+            pRegister->setValArray2D<uint8_t>(data.data(), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_word");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            const int32_t* RW2_word = pDevice->RW2_word_fesa.get(fesaDim1, fesaDim2, pContext);
+            std::vector<uint16_t> data(RW2_word, RW2_word + dim1 * dim2);
+            pRegister->setValArray2D<uint16_t>(data.data(), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_dword");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            const int64_t* RW2_dword = pDevice->RW2_dword_fesa.get(fesaDim1, fesaDim2, pContext);
+            std::vector<uint32_t> data(RW2_dword, RW2_dword + dim1 * dim2);
+            pRegister->setValArray2D<uint32_t>(data.data(), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_int");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            pRegister->setValArray2D<int16_t>(pDevice->RW2_int_fesa.get(fesaDim1, fesaDim2, pContext), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_dint");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            pRegister->setValArray2D<int32_t>(pDevice->RW2_dint_fesa.get(fesaDim1, fesaDim2, pContext), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_real");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            pRegister->setValArray2D<float>(pDevice->RW2_real_fesa.get(fesaDim1, fesaDim2, pContext), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_dt");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            pRegister->setValArray2D<double>(pDevice->RW2_dt_fesa.get(fesaDim1, fesaDim2, pContext), dim1, dim2);
+        }
+
+        pPLCDevice->getRegister("RW_enum")->setVal<int32_t>( pDevice->RW_enum_fesa.get(pContext));
+        if (sendNow) pPLCDevice->send(blockName_);
+    }
+
+    void MyRWBlock_Type::setOneDevice(Device* pDevice, const MyRWBlockPropPropertyData& data, bool sendNow, MultiplexingContext* pContext)
+    {
+        checkInitialized();
+        Silecs::PLC* pPLC = &pPLCHandler_->getPLC(pDevice->plcHostName.get());
+        Silecs::Device* pPLCDevice = pPLC->getDeploy().getDesign("AllTypesFESA").getDevice(pDevice->plcDeviceLabel.get());
+
+        (data.isRW_int8Available()) ? pPLCDevice->getRegister("RW_int8")->setVal<int8_t>( data.RW_int8.get()) :
+                                          pPLCDevice->getRegister("RW_int8")->setVal<int8_t>( pDevice->RW_int8.get(pContext));
+        (data.isRW_uint8_fesaAvailable()) ? pPLCDevice->getRegister("RW_uint8")->setVal<uint8_t>( (uint8_t)data.RW_uint8_fesa.get()) :
+                                          pPLCDevice->getRegister("RW_uint8")->setVal<uint8_t>( (uint8_t)pDevice->RW_uint8_fesa.get(pContext));
+        (data.isRW_int16_fesaAvailable()) ? pPLCDevice->getRegister("RW_int16")->setVal<int16_t>( data.RW_int16_fesa.get()) :
+                                          pPLCDevice->getRegister("RW_int16")->setVal<int16_t>( pDevice->RW_int16_fesa.get(pContext));
+        (data.isRW_uint16_fesaAvailable()) ? pPLCDevice->getRegister("RW_uint16")->setVal<uint16_t>( (uint16_t)data.RW_uint16_fesa.get()) :
+                                          pPLCDevice->getRegister("RW_uint16")->setVal<uint16_t>( (uint16_t)pDevice->RW_uint16_fesa.get(pContext));
+        (data.isRW_int32_fesaAvailable()) ? pPLCDevice->getRegister("RW_int32")->setVal<int32_t>( data.RW_int32_fesa.get()) :
+                                          pPLCDevice->getRegister("RW_int32")->setVal<int32_t>( pDevice->RW_int32_fesa.get(pContext));
+        (data.isRW_uint32_fesaAvailable()) ? pPLCDevice->getRegister("RW_uint32")->setVal<uint32_t>( (uint32_t)data.RW_uint32_fesa.get()) :
+                                          pPLCDevice->getRegister("RW_uint32")->setVal<uint32_t>( (uint32_t)pDevice->RW_uint32_fesa.get(pContext));
+        (data.isRW_float32_fesaAvailable()) ? pPLCDevice->getRegister("RW_float32")->setVal<float>( data.RW_float32_fesa.get()) :
+                                          pPLCDevice->getRegister("RW_float32")->setVal<float>( pDevice->RW_float32_fesa.get(pContext));
+        (data.isRW_string_fesaAvailable()) ? pPLCDevice->getRegister("RW_string")->setVal<std::string>(data.RW_string_fesa.get()) :
+                                     pPLCDevice->getRegister("RW_string")->setVal<std::string>(pDevice->RW_string_fesa.get(pContext));
+        (data.isRW_date_fesaAvailable()) ? pPLCDevice->getRegister("RW_date")->setVal<double>( data.RW_date_fesa.get()) :
+                                          pPLCDevice->getRegister("RW_date")->setVal<double>( pDevice->RW_date_fesa.get(pContext));
+        (data.isRW_char_fesaAvailable()) ? pPLCDevice->getRegister("RW_char")->setVal<int8_t>( data.RW_char_fesa.get()) :
+                                          pPLCDevice->getRegister("RW_char")->setVal<int8_t>( pDevice->RW_char_fesa.get(pContext));
+        (data.isRW_byte_fesaAvailable()) ? pPLCDevice->getRegister("RW_byte")->setVal<uint8_t>( (uint8_t)data.RW_byte_fesa.get()) :
+                                          pPLCDevice->getRegister("RW_byte")->setVal<uint8_t>( (uint8_t)pDevice->RW_byte_fesa.get(pContext));
+        (data.isRW_word_fesaAvailable()) ? pPLCDevice->getRegister("RW_word")->setVal<uint16_t>( (uint16_t)data.RW_word_fesa.get()) :
+                                          pPLCDevice->getRegister("RW_word")->setVal<uint16_t>( (uint16_t)pDevice->RW_word_fesa.get(pContext));
+        (data.isRW_dword_fesaAvailable()) ? pPLCDevice->getRegister("RW_dword")->setVal<uint32_t>( (uint32_t)data.RW_dword_fesa.get()) :
+                                          pPLCDevice->getRegister("RW_dword")->setVal<uint32_t>( (uint32_t)pDevice->RW_dword_fesa.get(pContext));
+        (data.isRW_int_fesaAvailable()) ? pPLCDevice->getRegister("RW_int")->setVal<int16_t>( data.RW_int_fesa.get()) :
+                                          pPLCDevice->getRegister("RW_int")->setVal<int16_t>( pDevice->RW_int_fesa.get(pContext));
+        (data.isRW_dint_fesaAvailable()) ? pPLCDevice->getRegister("RW_dint")->setVal<int32_t>( data.RW_dint_fesa.get()) :
+                                          pPLCDevice->getRegister("RW_dint")->setVal<int32_t>( pDevice->RW_dint_fesa.get(pContext));
+        (data.isRW_real_fesaAvailable()) ? pPLCDevice->getRegister("RW_real")->setVal<float>( data.RW_real_fesa.get()) :
+                                          pPLCDevice->getRegister("RW_real")->setVal<float>( pDevice->RW_real_fesa.get(pContext));
+        (data.isRW_dt_fesaAvailable()) ? pPLCDevice->getRegister("RW_dt")->setVal<double>( data.RW_dt_fesa.get()) :
+                                          pPLCDevice->getRegister("RW_dt")->setVal<double>( pDevice->RW_dt_fesa.get(pContext));
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_int8");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            (data.isRW2_int8Available()) ? pRegister->setValArray2D<int8_t>(data.RW2_int8.get(fesaDim1, fesaDim2), dim1, dim2) :
+                                         pRegister->setValArray2D<int8_t>(pDevice->RW2_int8.get(fesaDim1, fesaDim2, pContext), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_uint8");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            const int16_t* RW2_uint8;
+            (data.isRW2_uint8_fesaAvailable()) ? RW2_uint8 = data.RW2_uint8_fesa.get(fesaDim1, fesaDim2) :
+                                        RW2_uint8 = pDevice->RW2_uint8_fesa.get(fesaDim1, fesaDim2, pContext);
+            std::vector<uint8_t> data(RW2_uint8, RW2_uint8 + dim1 * dim2);
+            pRegister->setValArray2D<uint8_t>(data.data(), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_int16");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            (data.isRW2_int16_fesaAvailable()) ? pRegister->setValArray2D<int16_t>(data.RW2_int16_fesa.get(fesaDim1, fesaDim2), dim1, dim2) :
+                                         pRegister->setValArray2D<int16_t>(pDevice->RW2_int16_fesa.get(fesaDim1, fesaDim2, pContext), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_uint16");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            const int32_t* RW2_uint16;
+            (data.isRW2_uint16_fesaAvailable()) ? RW2_uint16 = data.RW2_uint16_fesa.get(fesaDim1, fesaDim2) :
+                                        RW2_uint16 = pDevice->RW2_uint16_fesa.get(fesaDim1, fesaDim2, pContext);
+            std::vector<uint16_t> data(RW2_uint16, RW2_uint16 + dim1 * dim2);
+            pRegister->setValArray2D<uint16_t>(data.data(), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_int32");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            (data.isRW2_int32_fesaAvailable()) ? pRegister->setValArray2D<int32_t>(data.RW2_int32_fesa.get(fesaDim1, fesaDim2), dim1, dim2) :
+                                         pRegister->setValArray2D<int32_t>(pDevice->RW2_int32_fesa.get(fesaDim1, fesaDim2, pContext), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_uint32");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            const int64_t* RW2_uint32;
+            (data.isRW2_uint32_fesaAvailable()) ? RW2_uint32 = data.RW2_uint32_fesa.get(fesaDim1, fesaDim2) :
+                                        RW2_uint32 = pDevice->RW2_uint32_fesa.get(fesaDim1, fesaDim2, pContext);
+            std::vector<uint32_t> data(RW2_uint32, RW2_uint32 + dim1 * dim2);
+            pRegister->setValArray2D<uint32_t>(data.data(), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_float32");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            (data.isRW2_float32_fesaAvailable()) ? pRegister->setValArray2D<float>(data.RW2_float32_fesa.get(fesaDim1, fesaDim2), dim1, dim2) :
+                                         pRegister->setValArray2D<float>(pDevice->RW2_float32_fesa.get(fesaDim1, fesaDim2, pContext), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_date");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            (data.isRW2_date_fesaAvailable()) ? pRegister->setValArray2D<double>(data.RW2_date_fesa.get(fesaDim1, fesaDim2), dim1, dim2) :
+                                         pRegister->setValArray2D<double>(pDevice->RW2_date_fesa.get(fesaDim1, fesaDim2, pContext), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_char");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            (data.isRW2_char_fesaAvailable()) ? pRegister->setValArray2D<int8_t>(data.RW2_char_fesa.get(fesaDim1, fesaDim2), dim1, dim2) :
+                                         pRegister->setValArray2D<int8_t>(pDevice->RW2_char_fesa.get(fesaDim1, fesaDim2, pContext), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_byte");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            const int16_t* RW2_byte;
+            (data.isRW2_byte_fesaAvailable()) ? RW2_byte = data.RW2_byte_fesa.get(fesaDim1, fesaDim2) :
+                                        RW2_byte = pDevice->RW2_byte_fesa.get(fesaDim1, fesaDim2, pContext);
+            std::vector<uint8_t> data(RW2_byte, RW2_byte + dim1 * dim2);
+            pRegister->setValArray2D<uint8_t>(data.data(), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_word");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            const int32_t* RW2_word;
+            (data.isRW2_word_fesaAvailable()) ? RW2_word = data.RW2_word_fesa.get(fesaDim1, fesaDim2) :
+                                        RW2_word = pDevice->RW2_word_fesa.get(fesaDim1, fesaDim2, pContext);
+            std::vector<uint16_t> data(RW2_word, RW2_word + dim1 * dim2);
+            pRegister->setValArray2D<uint16_t>(data.data(), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_dword");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            const int64_t* RW2_dword;
+            (data.isRW2_dword_fesaAvailable()) ? RW2_dword = data.RW2_dword_fesa.get(fesaDim1, fesaDim2) :
+                                        RW2_dword = pDevice->RW2_dword_fesa.get(fesaDim1, fesaDim2, pContext);
+            std::vector<uint32_t> data(RW2_dword, RW2_dword + dim1 * dim2);
+            pRegister->setValArray2D<uint32_t>(data.data(), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_int");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            (data.isRW2_int_fesaAvailable()) ? pRegister->setValArray2D<int16_t>(data.RW2_int_fesa.get(fesaDim1, fesaDim2), dim1, dim2) :
+                                         pRegister->setValArray2D<int16_t>(pDevice->RW2_int_fesa.get(fesaDim1, fesaDim2, pContext), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_dint");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            (data.isRW2_dint_fesaAvailable()) ? pRegister->setValArray2D<int32_t>(data.RW2_dint_fesa.get(fesaDim1, fesaDim2), dim1, dim2) :
+                                         pRegister->setValArray2D<int32_t>(pDevice->RW2_dint_fesa.get(fesaDim1, fesaDim2, pContext), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_real");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            (data.isRW2_real_fesaAvailable()) ? pRegister->setValArray2D<float>(data.RW2_real_fesa.get(fesaDim1, fesaDim2), dim1, dim2) :
+                                         pRegister->setValArray2D<float>(pDevice->RW2_real_fesa.get(fesaDim1, fesaDim2, pContext), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("RW2_dt");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            (data.isRW2_dt_fesaAvailable()) ? pRegister->setValArray2D<double>(data.RW2_dt_fesa.get(fesaDim1, fesaDim2), dim1, dim2) :
+                                         pRegister->setValArray2D<double>(pDevice->RW2_dt_fesa.get(fesaDim1, fesaDim2, pContext), dim1, dim2);
+        }
+
+        (data.isRW_enum_fesaAvailable()) ? pPLCDevice->getRegister("RW_enum")->setVal<int32_t>( data.RW_enum_fesa.get()) :
+                                          pPLCDevice->getRegister("RW_enum")->setVal<int32_t>( pDevice->RW_enum_fesa.get(pContext));
+        if (sendNow) pPLCDevice->send(blockName_);
+
+    }
+    
+    void MyWOBlock_Type::setOneDevice(Device* pDevice, const bool sendNow, MultiplexingContext* pContext)
+    {
+        checkInitialized();
+        Silecs::PLC* pPLC  = &pPLCHandler_->getPLC(pDevice->plcHostName.get());
+        Silecs::Device* pPLCDevice = pPLC->getDeploy().getDesign("AllTypesFESA").getDevice(pDevice->plcDeviceLabel.get());
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("WO_int8");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t fesaDim1;
+            pRegister->setValArray<int8_t>(pDevice->WO_int8.get(fesaDim1, pContext), dim1);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("WO_uint8");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t fesaDim1;
+            const int16_t* WO_uint8 = pDevice->WO_uint8_fesa.get(fesaDim1, pContext);
+            std::vector<uint8_t> data(WO_uint8, WO_uint8 + dim1);
+            pRegister->setValArray<uint8_t>(data.data(), dim1);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("WO_int16");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t fesaDim1;
+            pRegister->setValArray<int16_t>(pDevice->WO_int16_fesa.get(fesaDim1, pContext), dim1);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("WO_uint16");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t fesaDim1;
+            const int32_t* WO_uint16 = pDevice->WO_uint16_fesa.get(fesaDim1, pContext);
+            std::vector<uint16_t> data(WO_uint16, WO_uint16 + dim1);
+            pRegister->setValArray<uint16_t>(data.data(), dim1);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("WO_int32");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t fesaDim1;
+            pRegister->setValArray<int32_t>(pDevice->WO_int32_fesa.get(fesaDim1, pContext), dim1);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("WO_uint32");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t fesaDim1;
+            const int64_t* WO_uint32 = pDevice->WO_uint32_fesa.get(fesaDim1, pContext);
+            std::vector<uint32_t> data(WO_uint32, WO_uint32 + dim1);
+            pRegister->setValArray<uint32_t>(data.data(), dim1);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("WO_float32");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t fesaDim1;
+            pRegister->setValArray<float>(pDevice->WO_float32_fesa.get(fesaDim1, pContext), dim1);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("WO_string");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t fesaDim1;
+            std::string stdStringArray[dim1];
+            const char* const* cStringArray = pDevice->WO_string_fesa.get(fesaDim1, pContext);
+            for (unsigned int i=0; i<dim1; i++) stdStringArray[i] = (const char*)cStringArray[i];
+            pRegister->setValArray<std::string>(stdStringArray, dim1);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("WO_date");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t fesaDim1;
+            pRegister->setValArray<double>(pDevice->WO_date_fesa.get(fesaDim1, pContext), dim1);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("WO_char");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t fesaDim1;
+            pRegister->setValArray<int8_t>(pDevice->WO_char_fesa.get(fesaDim1, pContext), dim1);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("WO_byte");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t fesaDim1;
+            const int16_t* WO_byte = pDevice->WO_byte_fesa.get(fesaDim1, pContext);
+            std::vector<uint8_t> data(WO_byte, WO_byte + dim1);
+            pRegister->setValArray<uint8_t>(data.data(), dim1);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("WO_word");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t fesaDim1;
+            const int32_t* WO_word = pDevice->WO_word_fesa.get(fesaDim1, pContext);
+            std::vector<uint16_t> data(WO_word, WO_word + dim1);
+            pRegister->setValArray<uint16_t>(data.data(), dim1);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("WO_dword");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t fesaDim1;
+            const int64_t* WO_dword = pDevice->WO_dword_fesa.get(fesaDim1, pContext);
+            std::vector<uint32_t> data(WO_dword, WO_dword + dim1);
+            pRegister->setValArray<uint32_t>(data.data(), dim1);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("WO_int");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t fesaDim1;
+            pRegister->setValArray<int16_t>(pDevice->WO_int_fesa.get(fesaDim1, pContext), dim1);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("WO_dint");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t fesaDim1;
+            pRegister->setValArray<int32_t>(pDevice->WO_dint_fesa.get(fesaDim1, pContext), dim1);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("WO_real");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t fesaDim1;
+            pRegister->setValArray<float>(pDevice->WO_real_fesa.get(fesaDim1, pContext), dim1);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("WO_dt");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t fesaDim1;
+            pRegister->setValArray<double>(pDevice->WO_dt_fesa.get(fesaDim1, pContext), dim1);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("WO_enum");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t fesaDim1;
+            const TEST_ENUM::TEST_ENUM* WO_enum = pDevice->WO_enum_fesa.get(fesaDim1, pContext);
+            std::vector<int32_t> data(WO_enum, WO_enum + dim1);
+            pRegister->setValArray<int32_t>(data.data(), dim1);
+        }
+
+        if (sendNow) pPLCDevice->send(blockName_);
+    }
+
+    void MyWOBlock_Type::setOneDevice(Device* pDevice, const MyWOBlockPropPropertyData& data, bool sendNow, MultiplexingContext* pContext)
+    {
+        checkInitialized();
+        Silecs::PLC* pPLC = &pPLCHandler_->getPLC(pDevice->plcHostName.get());
+        Silecs::Device* pPLCDevice = pPLC->getDeploy().getDesign("AllTypesFESA").getDevice(pDevice->plcDeviceLabel.get());
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("WO_int8");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t fesaDim1;
+            (data.isWO_int8Available()) ? pRegister->setValArray<int8_t>( data.WO_int8.get(fesaDim1), dim1) :
+                                        pRegister->setValArray<int8_t>( pDevice->WO_int8.get(fesaDim1, pContext), dim1);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("WO_uint8");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t fesaDim1;
+            const int16_t* WO_uint8;
+            (data.isWO_uint8_fesaAvailable()) ? WO_uint8 = data.WO_uint8_fesa.get(fesaDim1) :
+                                        WO_uint8 = pDevice->WO_uint8_fesa.get(fesaDim1, pContext);
+            std::vector<uint8_t> data(WO_uint8, WO_uint8 + dim1);
+            pRegister->setValArray<uint8_t>(data.data(), dim1);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("WO_int16");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t fesaDim1;
+            (data.isWO_int16_fesaAvailable()) ? pRegister->setValArray<int16_t>( data.WO_int16_fesa.get(fesaDim1), dim1) :
+                                        pRegister->setValArray<int16_t>( pDevice->WO_int16_fesa.get(fesaDim1, pContext), dim1);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("WO_uint16");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t fesaDim1;
+            const int32_t* WO_uint16;
+            (data.isWO_uint16_fesaAvailable()) ? WO_uint16 = data.WO_uint16_fesa.get(fesaDim1) :
+                                        WO_uint16 = pDevice->WO_uint16_fesa.get(fesaDim1, pContext);
+            std::vector<uint16_t> data(WO_uint16, WO_uint16 + dim1);
+            pRegister->setValArray<uint16_t>(data.data(), dim1);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("WO_int32");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t fesaDim1;
+            (data.isWO_int32_fesaAvailable()) ? pRegister->setValArray<int32_t>( data.WO_int32_fesa.get(fesaDim1), dim1) :
+                                        pRegister->setValArray<int32_t>( pDevice->WO_int32_fesa.get(fesaDim1, pContext), dim1);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("WO_uint32");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t fesaDim1;
+            const int64_t* WO_uint32;
+            (data.isWO_uint32_fesaAvailable()) ? WO_uint32 = data.WO_uint32_fesa.get(fesaDim1) :
+                                        WO_uint32 = pDevice->WO_uint32_fesa.get(fesaDim1, pContext);
+            std::vector<uint32_t> data(WO_uint32, WO_uint32 + dim1);
+            pRegister->setValArray<uint32_t>(data.data(), dim1);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("WO_float32");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t fesaDim1;
+            (data.isWO_float32_fesaAvailable()) ? pRegister->setValArray<float>( data.WO_float32_fesa.get(fesaDim1), dim1) :
+                                        pRegister->setValArray<float>( pDevice->WO_float32_fesa.get(fesaDim1, pContext), dim1);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("WO_string");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t fesaDim1;
+            std::string stdStringArray[dim1];
+            const char* const* cStringArray = (data.isWO_string_fesaAvailable() ? data.WO_string_fesa.get(fesaDim1) : pDevice->WO_string_fesa.get(fesaDim1, pContext));
+            for (unsigned int i=0; i<dim1; i++) stdStringArray[i] = (const char*)cStringArray[i];
+            pRegister->setValArray<std::string>(stdStringArray, dim1);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("WO_date");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t fesaDim1;
+            (data.isWO_date_fesaAvailable()) ? pRegister->setValArray<double>( data.WO_date_fesa.get(fesaDim1), dim1) :
+                                        pRegister->setValArray<double>( pDevice->WO_date_fesa.get(fesaDim1, pContext), dim1);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("WO_char");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t fesaDim1;
+            (data.isWO_char_fesaAvailable()) ? pRegister->setValArray<int8_t>( data.WO_char_fesa.get(fesaDim1), dim1) :
+                                        pRegister->setValArray<int8_t>( pDevice->WO_char_fesa.get(fesaDim1, pContext), dim1);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("WO_byte");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t fesaDim1;
+            const int16_t* WO_byte;
+            (data.isWO_byte_fesaAvailable()) ? WO_byte = data.WO_byte_fesa.get(fesaDim1) :
+                                        WO_byte = pDevice->WO_byte_fesa.get(fesaDim1, pContext);
+            std::vector<uint8_t> data(WO_byte, WO_byte + dim1);
+            pRegister->setValArray<uint8_t>(data.data(), dim1);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("WO_word");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t fesaDim1;
+            const int32_t* WO_word;
+            (data.isWO_word_fesaAvailable()) ? WO_word = data.WO_word_fesa.get(fesaDim1) :
+                                        WO_word = pDevice->WO_word_fesa.get(fesaDim1, pContext);
+            std::vector<uint16_t> data(WO_word, WO_word + dim1);
+            pRegister->setValArray<uint16_t>(data.data(), dim1);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("WO_dword");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t fesaDim1;
+            const int64_t* WO_dword;
+            (data.isWO_dword_fesaAvailable()) ? WO_dword = data.WO_dword_fesa.get(fesaDim1) :
+                                        WO_dword = pDevice->WO_dword_fesa.get(fesaDim1, pContext);
+            std::vector<uint32_t> data(WO_dword, WO_dword + dim1);
+            pRegister->setValArray<uint32_t>(data.data(), dim1);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("WO_int");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t fesaDim1;
+            (data.isWO_int_fesaAvailable()) ? pRegister->setValArray<int16_t>( data.WO_int_fesa.get(fesaDim1), dim1) :
+                                        pRegister->setValArray<int16_t>( pDevice->WO_int_fesa.get(fesaDim1, pContext), dim1);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("WO_dint");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t fesaDim1;
+            (data.isWO_dint_fesaAvailable()) ? pRegister->setValArray<int32_t>( data.WO_dint_fesa.get(fesaDim1), dim1) :
+                                        pRegister->setValArray<int32_t>( pDevice->WO_dint_fesa.get(fesaDim1, pContext), dim1);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("WO_real");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t fesaDim1;
+            (data.isWO_real_fesaAvailable()) ? pRegister->setValArray<float>( data.WO_real_fesa.get(fesaDim1), dim1) :
+                                        pRegister->setValArray<float>( pDevice->WO_real_fesa.get(fesaDim1, pContext), dim1);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("WO_dt");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t fesaDim1;
+            (data.isWO_dt_fesaAvailable()) ? pRegister->setValArray<double>( data.WO_dt_fesa.get(fesaDim1), dim1) :
+                                        pRegister->setValArray<double>( pDevice->WO_dt_fesa.get(fesaDim1, pContext), dim1);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("WO_enum");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t fesaDim1;
+            const TEST_ENUM::TEST_ENUM* WO_enum;
+            (data.isWO_enum_fesaAvailable()) ? WO_enum = data.WO_enum_fesa.get(fesaDim1) :
+                                        WO_enum = pDevice->WO_enum_fesa.get(fesaDim1, pContext);
+            std::vector<int32_t> data(WO_enum, WO_enum + dim1);
+            pRegister->setValArray<int32_t>(data.data(), dim1);
+        }
+
+        if (sendNow) pPLCDevice->send(blockName_);
+
+    }
+    
+    void MyCBlock_Type::setOneDevice(Device* pDevice, const bool sendNow, MultiplexingContext* pContext)
+    {
+        checkInitialized();
+        Silecs::PLC* pPLC  = &pPLCHandler_->getPLC(pDevice->plcHostName.get());
+        Silecs::Device* pPLCDevice = pPLC->getDeploy().getDesign("AllTypesFESA").getDevice(pDevice->plcDeviceLabel.get());
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("C_int8");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            pRegister->setValArray2D<int8_t>(pDevice->C_int8.get(fesaDim1, fesaDim2), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("C_uint8");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            const int16_t* C_uint8 = pDevice->C_uint8_fesa.get(fesaDim1, fesaDim2);
+            std::vector<uint8_t> data(C_uint8, C_uint8 + dim1 * dim2);
+            pRegister->setValArray2D<uint8_t>(data.data(), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("C_int16");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            pRegister->setValArray2D<int16_t>(pDevice->C_int16_fesa.get(fesaDim1, fesaDim2), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("C_uint16");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            const int32_t* C_uint16 = pDevice->C_uint16_fesa.get(fesaDim1, fesaDim2);
+            std::vector<uint16_t> data(C_uint16, C_uint16 + dim1 * dim2);
+            pRegister->setValArray2D<uint16_t>(data.data(), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("C_int32");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            pRegister->setValArray2D<int32_t>(pDevice->C_int32_fesa.get(fesaDim1, fesaDim2), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("C_uint32");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            const int64_t* C_uint32 = pDevice->C_uint32_fesa.get(fesaDim1, fesaDim2);
+            std::vector<uint32_t> data(C_uint32, C_uint32 + dim1 * dim2);
+            pRegister->setValArray2D<uint32_t>(data.data(), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("C_float32");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            pRegister->setValArray2D<float>(pDevice->C_float32_fesa.get(fesaDim1, fesaDim2), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("C_date");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            pRegister->setValArray2D<double>(pDevice->C_date_fesa.get(fesaDim1, fesaDim2), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("C_char");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            pRegister->setValArray2D<int8_t>(pDevice->C_char_fesa.get(fesaDim1, fesaDim2), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("C_byte");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            const int16_t* C_byte = pDevice->C_byte_fesa.get(fesaDim1, fesaDim2);
+            std::vector<uint8_t> data(C_byte, C_byte + dim1 * dim2);
+            pRegister->setValArray2D<uint8_t>(data.data(), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("C_word");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            const int32_t* C_word = pDevice->C_word_fesa.get(fesaDim1, fesaDim2);
+            std::vector<uint16_t> data(C_word, C_word + dim1 * dim2);
+            pRegister->setValArray2D<uint16_t>(data.data(), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("C_dword");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            const int64_t* C_dword = pDevice->C_dword_fesa.get(fesaDim1, fesaDim2);
+            std::vector<uint32_t> data(C_dword, C_dword + dim1 * dim2);
+            pRegister->setValArray2D<uint32_t>(data.data(), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("C_int");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            pRegister->setValArray2D<int16_t>(pDevice->C_int_fesa.get(fesaDim1, fesaDim2), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("C_dint");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            pRegister->setValArray2D<int32_t>(pDevice->C_dint_fesa.get(fesaDim1, fesaDim2), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("C_real");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            pRegister->setValArray2D<float>(pDevice->C_real_fesa.get(fesaDim1, fesaDim2), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("C_dt");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            pRegister->setValArray2D<double>(pDevice->C_dt_fesa.get(fesaDim1, fesaDim2), dim1, dim2);
+        }
+
+        if (sendNow) pPLCDevice->send(blockName_);
+    }
+
+    void MyCBlock_Type::setOneDevice(Device* pDevice, const MyCBlockPropPropertyData& data, bool sendNow, MultiplexingContext* pContext)
+    {
+        checkInitialized();
+        Silecs::PLC* pPLC = &pPLCHandler_->getPLC(pDevice->plcHostName.get());
+        Silecs::Device* pPLCDevice = pPLC->getDeploy().getDesign("AllTypesFESA").getDevice(pDevice->plcDeviceLabel.get());
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("C_int8");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            (data.isC_int8Available()) ? pRegister->setValArray2D<int8_t>(data.C_int8.get(fesaDim1, fesaDim2), dim1, dim2) :
+                                         pRegister->setValArray2D<int8_t>(pDevice->C_int8.get(fesaDim1, fesaDim2), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("C_uint8");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            const int16_t* C_uint8;
+            (data.isC_uint8_fesaAvailable()) ? C_uint8 = data.C_uint8_fesa.get(fesaDim1, fesaDim2) :
+                                        C_uint8 = pDevice->C_uint8_fesa.get(fesaDim1, fesaDim2);
+            std::vector<uint8_t> data(C_uint8, C_uint8 + dim1 * dim2);
+            pRegister->setValArray2D<uint8_t>(data.data(), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("C_int16");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            (data.isC_int16_fesaAvailable()) ? pRegister->setValArray2D<int16_t>(data.C_int16_fesa.get(fesaDim1, fesaDim2), dim1, dim2) :
+                                         pRegister->setValArray2D<int16_t>(pDevice->C_int16_fesa.get(fesaDim1, fesaDim2), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("C_uint16");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            const int32_t* C_uint16;
+            (data.isC_uint16_fesaAvailable()) ? C_uint16 = data.C_uint16_fesa.get(fesaDim1, fesaDim2) :
+                                        C_uint16 = pDevice->C_uint16_fesa.get(fesaDim1, fesaDim2);
+            std::vector<uint16_t> data(C_uint16, C_uint16 + dim1 * dim2);
+            pRegister->setValArray2D<uint16_t>(data.data(), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("C_int32");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            (data.isC_int32_fesaAvailable()) ? pRegister->setValArray2D<int32_t>(data.C_int32_fesa.get(fesaDim1, fesaDim2), dim1, dim2) :
+                                         pRegister->setValArray2D<int32_t>(pDevice->C_int32_fesa.get(fesaDim1, fesaDim2), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("C_uint32");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            const int64_t* C_uint32;
+            (data.isC_uint32_fesaAvailable()) ? C_uint32 = data.C_uint32_fesa.get(fesaDim1, fesaDim2) :
+                                        C_uint32 = pDevice->C_uint32_fesa.get(fesaDim1, fesaDim2);
+            std::vector<uint32_t> data(C_uint32, C_uint32 + dim1 * dim2);
+            pRegister->setValArray2D<uint32_t>(data.data(), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("C_float32");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            (data.isC_float32_fesaAvailable()) ? pRegister->setValArray2D<float>(data.C_float32_fesa.get(fesaDim1, fesaDim2), dim1, dim2) :
+                                         pRegister->setValArray2D<float>(pDevice->C_float32_fesa.get(fesaDim1, fesaDim2), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("C_date");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            (data.isC_date_fesaAvailable()) ? pRegister->setValArray2D<double>(data.C_date_fesa.get(fesaDim1, fesaDim2), dim1, dim2) :
+                                         pRegister->setValArray2D<double>(pDevice->C_date_fesa.get(fesaDim1, fesaDim2), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("C_char");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            (data.isC_char_fesaAvailable()) ? pRegister->setValArray2D<int8_t>(data.C_char_fesa.get(fesaDim1, fesaDim2), dim1, dim2) :
+                                         pRegister->setValArray2D<int8_t>(pDevice->C_char_fesa.get(fesaDim1, fesaDim2), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("C_byte");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            const int16_t* C_byte;
+            (data.isC_byte_fesaAvailable()) ? C_byte = data.C_byte_fesa.get(fesaDim1, fesaDim2) :
+                                        C_byte = pDevice->C_byte_fesa.get(fesaDim1, fesaDim2);
+            std::vector<uint8_t> data(C_byte, C_byte + dim1 * dim2);
+            pRegister->setValArray2D<uint8_t>(data.data(), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("C_word");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            const int32_t* C_word;
+            (data.isC_word_fesaAvailable()) ? C_word = data.C_word_fesa.get(fesaDim1, fesaDim2) :
+                                        C_word = pDevice->C_word_fesa.get(fesaDim1, fesaDim2);
+            std::vector<uint16_t> data(C_word, C_word + dim1 * dim2);
+            pRegister->setValArray2D<uint16_t>(data.data(), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("C_dword");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            const int64_t* C_dword;
+            (data.isC_dword_fesaAvailable()) ? C_dword = data.C_dword_fesa.get(fesaDim1, fesaDim2) :
+                                        C_dword = pDevice->C_dword_fesa.get(fesaDim1, fesaDim2);
+            std::vector<uint32_t> data(C_dword, C_dword + dim1 * dim2);
+            pRegister->setValArray2D<uint32_t>(data.data(), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("C_int");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            (data.isC_int_fesaAvailable()) ? pRegister->setValArray2D<int16_t>(data.C_int_fesa.get(fesaDim1, fesaDim2), dim1, dim2) :
+                                         pRegister->setValArray2D<int16_t>(pDevice->C_int_fesa.get(fesaDim1, fesaDim2), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("C_dint");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            (data.isC_dint_fesaAvailable()) ? pRegister->setValArray2D<int32_t>(data.C_dint_fesa.get(fesaDim1, fesaDim2), dim1, dim2) :
+                                         pRegister->setValArray2D<int32_t>(pDevice->C_dint_fesa.get(fesaDim1, fesaDim2), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("C_real");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            (data.isC_real_fesaAvailable()) ? pRegister->setValArray2D<float>(data.C_real_fesa.get(fesaDim1, fesaDim2), dim1, dim2) :
+                                         pRegister->setValArray2D<float>(pDevice->C_real_fesa.get(fesaDim1, fesaDim2), dim1, dim2);
+        }
+
+        {
+            auto& pRegister = pPLCDevice->getRegister("C_dt");
+            uint32_t dim1 = pRegister->getDimension1();
+            uint32_t dim2 = pRegister->getDimension2();
+            uint32_t fesaDim1,fesaDim2;
+            (data.isC_dt_fesaAvailable()) ? pRegister->setValArray2D<double>(data.C_dt_fesa.get(fesaDim1, fesaDim2), dim1, dim2) :
+                                         pRegister->setValArray2D<double>(pDevice->C_dt_fesa.get(fesaDim1, fesaDim2), dim1, dim2);
+        }
+
+        if (sendNow) pPLCDevice->send(blockName_);
+
+    }
+
+}
diff --git a/test/AllTypesFESA/src/AllTypesFESA/Common/AllTypesFESA.h b/test/AllTypesFESA/src/AllTypesFESA/Common/AllTypesFESA.h
new file mode 100644
index 0000000..a12ca81
--- /dev/null
+++ b/test/AllTypesFESA/src/AllTypesFESA/Common/AllTypesFESA.h
@@ -0,0 +1,152 @@
+/*
+ * AllTypesFESA.h
+ *
+ * Generated by SILECS framework tools. Will be overwritten on regeneration.
+ */
+
+#ifndef AllTypesFESA_AllTypesFESA_H_
+#define AllTypesFESA_AllTypesFESA_H_
+
+#include <silecs-communication/interface/core/SilecsService.h>
+#include <silecs-communication/interface/equipment/SilecsPLC.h>
+#include <fesa-core/Synchronization/MultiplexingContext.h>
+#include <AllTypesFESA/GeneratedCode/ServiceLocator.h>
+
+namespace AllTypesFESA
+{
+
+    /*---------------------------------------------------------------------------------------------------------
+     * SETUP
+     *---------------------------------------------------------------------------------------------------------
+     *  Setup the SILECS service by calling the setup() method from the RTDeviceClass::specificInit()
+     *  Stop and cleanup the SILECS service by calling the cleanup() method if needed (eg.: from ~RTDeviceClass())
+     *
+     *  In order to make use of the different blocks, defined in the silecsdesign, please make use of the static, block related variables of the class, defined on the bottom of this file !
+     * --------------------------------------------------------------------------------------------------------
+     */
+
+    /*---------------------------------------------------------------------------------------------------------
+     * COMMUNICATION
+     *---------------------------------------------------------------------------------------------------------
+     * General methods to synchronize the FESA fields and related PLC registers of the FESA server with or without
+     * PLC side synchronization (send/recv) if requested. Each action is done for one particular block.
+     * In case of BLOCK_MODE configuration (see SILECS doc.), the transaction is optimal with the following
+     * 'AllDevices' and 'PLCDevices' methods.
+     * Each method can be called in the appropriate server-action (set) and rt-action (get)
+     *
+     * getAllDevices  : [receive all devices of all connected PLCs +] update FESA fields with related SILECS registers
+     * setAllDevices  : update SILECS registers with related FESA fields [+ send block to all connected PLCs]
+     * getPLCDevices  : [receive all devices of one PLC +] update FESA fields with related SILECS registers
+     * setPLCDevices  : update SILECS registers with related FESA fields [+ send block to the PLC]
+     * getSomeDevices : [receive each device of the device-collection +] update FESA fields with related SILECS registers
+     * setSomeDevices : update SILECS registers with related FESA fields [+ send block to each device of the device-collection]
+     * getOneDevice   : [receive block of one PLC device +] update FESA fields with related SILECS registers
+     * setOneDevice   : update SILECS registers with related FESA fields [+ send block to the PLC device]
+     *
+     * --------------------------------------------------------------------------------------------------------
+     */
+
+    class AbstractAllTypesFESA
+    {
+        public:
+            static inline Silecs::Service* theService()  { return pService_; }
+            static inline Silecs::PLCHandler* thePLCHandler()  { return pPLCHandler_; }
+            inline std::string& getBlockName()          { return blockName_; }
+
+            static void setup(const ServiceLocator* serviceLocator);
+            static void cleanup();
+            static bool isInitialized(){ return AbstractAllTypesFESA::isInitialized_; }
+            static void updatePLCRegisters(Silecs::PLC* pPLC, const ServiceLocator* serviceLocator);
+            static void updateFesaFields(Silecs::PLC* pPLC, const ServiceLocator* serviceLocator);
+
+            AbstractAllTypesFESA(std::string blockName);
+            virtual ~AbstractAllTypesFESA();
+
+            void getAllDevices(const ServiceLocator* serviceLocator, const bool recvNow, MultiplexingContext* pContext);
+            void getPLCDevices(Silecs::PLC* pPLC, const ServiceLocator* serviceLocator, const bool recvNow, MultiplexingContext* pContext);
+            void getSomeDevices(std::vector<Device*> deviceCol, const bool recvNow, MultiplexingContext* pContext);
+            virtual void getOneDevice(Device* pDevice, const bool recvNow, MultiplexingContext* pContext);
+
+            void setAllDevices(const ServiceLocator* serviceLocator, const bool sendNow, MultiplexingContext* pContext);
+            void setPLCDevices(Silecs::PLC* pPLC, const ServiceLocator* serviceLocator, const bool sendNow, MultiplexingContext* pContext);
+            void setSomeDevices(std::vector<Device*> deviceCol, const bool sendNow, MultiplexingContext* pContext);
+            virtual void setOneDevice(Device* pDevice, const bool sendNow, MultiplexingContext* pContext);
+
+        protected:
+            static void checkInitialized();
+            static Silecs::Service* pService_;
+            static Silecs::PLCHandler* pPLCHandler_;
+            static bool isInitialized_;
+
+            // Name of the silecs-block which is addressed
+            std::string blockName_;
+
+            // not copyable object
+            AbstractAllTypesFESA(const AbstractAllTypesFESA&);
+            AbstractAllTypesFESA& operator=(const AbstractAllTypesFESA&);
+    };
+
+    class MyROBlock_Type : public AbstractAllTypesFESA
+    {
+        public:
+            MyROBlock_Type(std::string name);
+            ~MyROBlock_Type();
+            void getOneDevice(Device* pDevice, const bool transmitNow, MultiplexingContext* pContext);
+    };
+
+    class MyRWBlock_Type : public AbstractAllTypesFESA
+    {
+        public:
+            MyRWBlock_Type(std::string name);
+            ~MyRWBlock_Type();
+            void getOneDevice(Device* pDevice, const bool recvNow, MultiplexingContext* pContext);
+            void getOneDevice(Device* pDevice, MyRWBlockPropPropertyData& data, const bool recvNow);
+            void setOneDevice(Device* pDevice, const bool transmitNow, MultiplexingContext* pContext);
+            void setOneDevice(Device* pDevice, const MyRWBlockPropPropertyData& data, const bool transmitNow, MultiplexingContext* pContext);
+    };
+
+    class MyWOBlock_Type : public AbstractAllTypesFESA
+    {
+        public:
+            MyWOBlock_Type(std::string name);
+            ~MyWOBlock_Type();
+            void setOneDevice(Device* pDevice, const bool transmitNow, MultiplexingContext* pContext);
+            void setOneDevice(Device* pDevice, const MyWOBlockPropPropertyData& data, const bool transmitNow, MultiplexingContext* pContext);
+    };
+
+    class MyCBlock_Type : public AbstractAllTypesFESA
+    {
+        public:
+            MyCBlock_Type(std::string name);
+            ~MyCBlock_Type();
+            void setOneDevice(Device* pDevice, const bool transmitNow, MultiplexingContext* pContext);
+            void setOneDevice(Device* pDevice, const MyCBlockPropPropertyData& data, const bool transmitNow, MultiplexingContext* pContext);
+    };
+
+    /*---------------------------------------------------------------------------------------------------------
+     * INTERFACE
+     *---------------------------------------------------------------------------------------------------------
+     * This is the public interface used from the FESA code to access the PLC service.
+     */
+    class AllTypesFESA
+    {
+        public:
+            static inline Silecs::Service* theService()  { return AbstractAllTypesFESA::theService(); }
+            static inline Silecs::PLCHandler* thePLCHandler()  { return AbstractAllTypesFESA::thePLCHandler(); }
+            static void setup(const ServiceLocator* serviceLocator) { AbstractAllTypesFESA::setup(serviceLocator); }
+            static void cleanup() { AbstractAllTypesFESA::cleanup(); }
+            static bool isInitialized(){ return AbstractAllTypesFESA::isInitialized(); }
+            static Silecs::PLC* getPLC(Device* pDevice)
+            {
+                return &AbstractAllTypesFESA::thePLCHandler()->getPLC(pDevice->plcHostName.get());
+            }
+    
+            static MyROBlock_Type MyROBlock;
+            static MyRWBlock_Type MyRWBlock;
+            static MyWOBlock_Type MyWOBlock;
+            static MyCBlock_Type MyCBlock;           
+        };
+    }
+
+    #endif /* AllTypesFESA_AllTypesFESA_H_ */
+    
\ No newline at end of file
diff --git a/test/AllTypesFESA/src/AllTypesFESA/RealTime/RTDeviceClass.cpp b/test/AllTypesFESA/src/AllTypesFESA/RealTime/RTDeviceClass.cpp
new file mode 100644
index 0000000..b54fd64
--- /dev/null
+++ b/test/AllTypesFESA/src/AllTypesFESA/RealTime/RTDeviceClass.cpp
@@ -0,0 +1,81 @@
+
+// FESA framework 
+// Use this code as a starting point to develop your own equipment class 
+
+#include <AllTypesFESA/RealTime/RTDeviceClass.h>
+#include <AllTypesFESA/GeneratedCode/ServiceLocator.h>
+#include <fesa-core/Core/AbstractEvent.h>
+
+#include <cmw-log/Logger.h>
+
+#include <string>
+#include <vector>
+
+namespace 
+{
+
+cmw::log::Logger& logger = cmw::log::LoggerFactory::getLogger("FESA.USR.AllTypesFESA.RealTime.RTDeviceClass");
+
+} // namespace
+
+namespace AllTypesFESA
+{
+
+RTDeviceClass* RTDeviceClass::instance_ = NULL;
+
+RTDeviceClass::RTDeviceClass () :
+    RTDeviceClassGen()
+{
+}
+
+RTDeviceClass::~RTDeviceClass()
+{
+}
+
+RTDeviceClass* RTDeviceClass::getInstance()
+{
+    if (instance_ == NULL)
+    {
+        instance_ = new RTDeviceClass();
+    }
+    return instance_;
+}
+
+void RTDeviceClass::releaseInstance()
+{
+    if (instance_ != NULL) 
+    {
+        delete instance_;
+        instance_ = NULL;
+    }
+}
+
+// This method is called when the FESA class starts up.
+// You can write code that initializes devices in the loop below.
+void RTDeviceClass::specificInit()
+{
+    const Devices& deviceCol = AllTypesFESAServiceLocator_->getDeviceCollection();
+    for (Devices::const_iterator it = deviceCol.begin(); it != deviceCol.end(); ++it)
+    {
+        try
+        {
+            Device* device = *it;
+            static_cast<void>(device); // This line prevents an "unused variable" warning, it can be removed safely.
+            // Write here some code to initialize devices
+            
+        }
+        catch (const fesa::FesaException& exception)
+        {
+            LOG_ERROR_IF(logger, exception.getMessage());
+            // Re-throwing the exception prevents the process from starting up.
+            throw;
+        }
+    }
+}
+
+void RTDeviceClass::specificShutDown()
+{
+    // This method is executed just before a normal shut down of the process.
+}
+
+} // AllTypesFESA
diff --git a/test/AllTypesFESA/src/AllTypesFESA/RealTime/RTDeviceClass.h b/test/AllTypesFESA/src/AllTypesFESA/RealTime/RTDeviceClass.h
new file mode 100644
index 0000000..be938c6
--- /dev/null
+++ b/test/AllTypesFESA/src/AllTypesFESA/RealTime/RTDeviceClass.h
@@ -0,0 +1,28 @@
+
+// FESA framework 
+// Use this code as a starting point to develop your own equipment class 
+
+#ifndef _AllTypesFESA_RT_DEVICE_CLASS_H_
+#define _AllTypesFESA_RT_DEVICE_CLASS_H_
+
+#include <AllTypesFESA/GeneratedCode/RTDeviceClassGen.h>
+
+namespace AllTypesFESA
+{
+
+class RTDeviceClass: public RTDeviceClassGen
+{
+public:
+    static RTDeviceClass* getInstance();
+    static void releaseInstance();
+    void specificInit();
+    void specificShutDown();
+private:
+    RTDeviceClass();
+    virtual ~RTDeviceClass();
+    static RTDeviceClass* instance_;
+};
+
+} // AllTypesFESA
+
+#endif // _AllTypesFESA_RT_DEVICE_CLASS_H_
diff --git a/test/AllTypesFESA/src/AllTypesFESA/RealTime/StatusUpdateAction.cpp b/test/AllTypesFESA/src/AllTypesFESA/RealTime/StatusUpdateAction.cpp
new file mode 100644
index 0000000..210fd3e
--- /dev/null
+++ b/test/AllTypesFESA/src/AllTypesFESA/RealTime/StatusUpdateAction.cpp
@@ -0,0 +1,71 @@
+
+// FESA framework 
+// Use this code as a starting point to develop your own equipment class 
+
+#include <AllTypesFESA/GeneratedCode/ServiceLocator.h>
+#include <AllTypesFESA/RealTime/StatusUpdateAction.h>
+
+#include <cmw-log/Logger.h>
+
+namespace
+{
+
+cmw::log::Logger& logger = cmw::log::LoggerFactory::getLogger("FESA.USR.AllTypesFESA.RealTime.StatusUpdateAction");
+
+} // namespace
+
+#define LOG_DIAG_IF(topic,message) \
+{ \
+    DiagnosticsDefs::DiagnosticMessage diagMsg(DiagnosticsDefs::Side::user, DiagnosticsDefs::Source::rt); \
+    diagMsg.fesaClass = "AllTypesFESA"; \
+    diagMsg.name = "StatusUpdateAction"; \
+    diagMsg.action = DiagnosticsDefs::Action::undefined; \
+    diagMsg.msg = message; \
+    AllTypesFESAServiceLocator_->logDiagnosticMessage(topic, diagMsg); \
+}
+
+#define LOG_DIAG_DEVICE_IF(topic,message,device) \
+{ \
+    if (device->isLoggable()) \
+    { \
+        LOG_DIAG_IF(topic,message); \
+    } \
+}
+
+namespace AllTypesFESA
+{
+
+StatusUpdateAction::StatusUpdateAction(fesa::RTActionConfig& rtActionConfig, const fesa::AbstractServiceLocator* serviceLocator, const std::map<std::string, const fesa::AbstractServiceLocator*>& serviceLocatorRelatedClasses) :
+     StatusUpdateActionBase(rtActionConfig, serviceLocator, serviceLocatorRelatedClasses) 
+{
+}
+
+StatusUpdateAction::~StatusUpdateAction()
+{
+}
+
+// This method is called whenever an event triggers this action; this is where custom code must be written.
+// A real time action operates on a device collection, this is why a loop which iterates over the device collection
+// of this real time action is there.
+void StatusUpdateAction::execute(fesa::RTEvent* pEvt)
+{
+    const fesa::MultiplexingContext* context = pEvt->getMultiplexingContext();
+    static_cast<void>(context); // This line prevents an "unused variable" warning, it can be removed safely.
+    const Devices& devices = getFilteredDeviceCollection(pEvt);
+    for (Devices::const_iterator it = devices.begin(); it != devices.end(); ++it)
+    {
+        try
+        {
+            Device* device = *it;
+            static_cast<void>(device); // This line prevents an "unused variable" warning, it can be removed safely.
+            // Write here some code to process devices
+            
+        }
+        catch (const fesa::FesaException& exception)
+        {
+            LOG_ERROR_IF(logger, exception.getMessage());
+        }
+    }
+}
+
+} // AllTypesFESA
diff --git a/test/AllTypesFESA/src/AllTypesFESA/RealTime/StatusUpdateAction.h b/test/AllTypesFESA/src/AllTypesFESA/RealTime/StatusUpdateAction.h
new file mode 100644
index 0000000..0614cdb
--- /dev/null
+++ b/test/AllTypesFESA/src/AllTypesFESA/RealTime/StatusUpdateAction.h
@@ -0,0 +1,24 @@
+
+// FESA framework 
+// Use this code as a starting point to develop your own equipment class 
+
+#ifndef _AllTypesFESA_StatusUpdateAction_H_
+#define _AllTypesFESA_StatusUpdateAction_H_
+
+#include <AllTypesFESA/GeneratedCode/Device.h>
+#include <AllTypesFESA/GeneratedCode/GenRTActions.h>
+
+namespace AllTypesFESA
+{
+
+class StatusUpdateAction : public StatusUpdateActionBase
+{
+public:
+    StatusUpdateAction (fesa::RTActionConfig& rtActionConfig, const fesa::AbstractServiceLocator* serviceLocator, const std::map<std::string, const fesa::AbstractServiceLocator*>& serviceLocatorRelatedClasses);
+    virtual ~StatusUpdateAction();
+    void execute(fesa::RTEvent* pEvt);
+};
+
+} // AllTypesFESA
+
+#endif // _AllTypesFESA_StatusUpdateAction_H_
diff --git a/test/AllTypesFESA/src/AllTypesFESA/Server/GetMyCBlockProp.cpp b/test/AllTypesFESA/src/AllTypesFESA/Server/GetMyCBlockProp.cpp
new file mode 100644
index 0000000..921b2e4
--- /dev/null
+++ b/test/AllTypesFESA/src/AllTypesFESA/Server/GetMyCBlockProp.cpp
@@ -0,0 +1,73 @@
+
+// FESA framework 
+// Use this code as a starting point to develop your own equipment class 
+
+#include <AllTypesFESA/Server/GetMyCBlockProp.h>
+#include <AllTypesFESA/GeneratedCode/ServiceLocator.h>
+
+#include <cmw-log/Logger.h>
+
+namespace 
+{
+
+cmw::log::Logger& logger = cmw::log::LoggerFactory::getLogger("FESA.USR.AllTypesFESA.Server.GetMyCBlockProp");
+
+} // namespace
+
+#define LOG_DIAG_IF(topic,message) \
+{ \
+    DiagnosticsDefs::DiagnosticMessage diagMsg(DiagnosticsDefs::Side::user, DiagnosticsDefs::Source::rt); \
+    diagMsg.fesaClass = "AllTypesFESA"; \
+    diagMsg.name = "GetMyCBlockProp"; \
+    diagMsg.action = DiagnosticsDefs::Action::undefined; \
+    diagMsg.msg = message; \
+    AllTypesFESAServiceLocator_->logDiagnosticMessage(topic, diagMsg); \
+}
+
+#define LOG_DIAG_DEVICE_IF(topic,message,device) \
+{ \
+    if (device->isLoggable()) \
+    { \
+        LOG_DIAG_IF(topic,message); \
+    } \
+}
+
+namespace AllTypesFESA
+{
+
+GetMyCBlockProp::GetMyCBlockProp(fesa::ServerActionConfig& actionConfig, const fesa::AbstractServiceLocator* serviceLocator, const std::map<std::string, const fesa::AbstractServiceLocator*>& serviceLocatorRelatedClasses):
+        GetMyCBlockPropBase(actionConfig, serviceLocator, serviceLocatorRelatedClasses)
+{
+}
+
+GetMyCBlockProp::~GetMyCBlockProp()
+{
+}
+
+/*!
+ * \brief This method is executed consecutively to a GET/SET action:
+ * \param pEvt requestEvent from which the multiplexingContext can be extracted
+ * \param pDev points to the Device or Global instance involved by this request 
+ * \param data composite structure that aggregates one or several types data-entries corresponding to the property definition.
+ * This data object is the input (resp. output) which is passed when invoking a Get (resp. Set). 
+ * \param filter input parameter meant to fine tune the treatment.
+ */
+void GetMyCBlockProp::execute(fesa::RequestEvent* pEvt, Device* pDev, MyCBlockPropPropertyData& data, const MyCBlockPropFilterData& filter)
+{
+}
+
+// Use this member function to tell the framework whether the subscribed clients need to be updated or not. See the FESA wiki for more info
+bool GetMyCBlockProp::hasDataChanged(const fesa::RequestEvent& event, fesa::AbstractDevice& abstractDevice, const MyCBlockPropFilterData& filter) const
+{
+    //Device& device = static_cast<Device&>(abstractDevice);
+    return true;
+}
+
+// This method is called when a new subscription is requested. Returning false will abort the subscription.
+bool GetMyCBlockProp::isFilterValid(const fesa::AbstractDevice& abstractDevice, const MyCBlockPropFilterData& filter) const
+{
+    //Device& device = static_cast<Device&>(abstractDevice);
+    return true;
+}
+
+} // AllTypesFESA
diff --git a/test/AllTypesFESA/src/AllTypesFESA/Server/GetMyCBlockProp.h b/test/AllTypesFESA/src/AllTypesFESA/Server/GetMyCBlockProp.h
new file mode 100644
index 0000000..8a6f971
--- /dev/null
+++ b/test/AllTypesFESA/src/AllTypesFESA/Server/GetMyCBlockProp.h
@@ -0,0 +1,28 @@
+
+// FESA framework 
+// Use this code as a starting point to develop your own equipment class 
+
+#ifndef _AllTypesFESA_GetMyCBlockProp_H_
+#define _AllTypesFESA_GetMyCBlockProp_H_
+
+#include <AllTypesFESA/GeneratedCode/GetSetDefaultServerAction.h>
+#include <AllTypesFESA/GeneratedCode/PropertyData.h>
+#include <AllTypesFESA/GeneratedCode/TypeDefinition.h>
+#include <AllTypesFESA/GeneratedCode/Device.h>
+
+namespace AllTypesFESA
+{
+
+class GetMyCBlockProp : public GetMyCBlockPropBase
+{
+public:
+    GetMyCBlockProp(fesa::ServerActionConfig& actionConfig, const fesa::AbstractServiceLocator* serviceLocator, const std::map<std::string, const fesa::AbstractServiceLocator*>& serviceLocatorRelatedClasses);
+    virtual ~GetMyCBlockProp();
+    void execute(fesa::RequestEvent* pEvt, Device* pDev, MyCBlockPropPropertyData& data, const MyCBlockPropFilterData& filter);
+    bool hasDataChanged(const fesa::RequestEvent& event, fesa::AbstractDevice& abstractDevice, const MyCBlockPropFilterData& filter) const;
+    bool isFilterValid(const fesa::AbstractDevice& abstractDevice, const MyCBlockPropFilterData& filter) const;
+};
+
+} // AllTypesFESA
+
+#endif // _AllTypesFESA_GetMyCBlockProp_H_
diff --git a/test/AllTypesFESA/src/AllTypesFESA/Server/GetMyROBlockProp.cpp b/test/AllTypesFESA/src/AllTypesFESA/Server/GetMyROBlockProp.cpp
new file mode 100644
index 0000000..4116001
--- /dev/null
+++ b/test/AllTypesFESA/src/AllTypesFESA/Server/GetMyROBlockProp.cpp
@@ -0,0 +1,73 @@
+
+// FESA framework 
+// Use this code as a starting point to develop your own equipment class 
+
+#include <AllTypesFESA/Server/GetMyROBlockProp.h>
+#include <AllTypesFESA/GeneratedCode/ServiceLocator.h>
+
+#include <cmw-log/Logger.h>
+
+namespace 
+{
+
+cmw::log::Logger& logger = cmw::log::LoggerFactory::getLogger("FESA.USR.AllTypesFESA.Server.GetMyROBlockProp");
+
+} // namespace
+
+#define LOG_DIAG_IF(topic,message) \
+{ \
+    DiagnosticsDefs::DiagnosticMessage diagMsg(DiagnosticsDefs::Side::user, DiagnosticsDefs::Source::rt); \
+    diagMsg.fesaClass = "AllTypesFESA"; \
+    diagMsg.name = "GetMyROBlockProp"; \
+    diagMsg.action = DiagnosticsDefs::Action::undefined; \
+    diagMsg.msg = message; \
+    AllTypesFESAServiceLocator_->logDiagnosticMessage(topic, diagMsg); \
+}
+
+#define LOG_DIAG_DEVICE_IF(topic,message,device) \
+{ \
+    if (device->isLoggable()) \
+    { \
+        LOG_DIAG_IF(topic,message); \
+    } \
+}
+
+namespace AllTypesFESA
+{
+
+GetMyROBlockProp::GetMyROBlockProp(fesa::ServerActionConfig& actionConfig, const fesa::AbstractServiceLocator* serviceLocator, const std::map<std::string, const fesa::AbstractServiceLocator*>& serviceLocatorRelatedClasses):
+        GetMyROBlockPropBase(actionConfig, serviceLocator, serviceLocatorRelatedClasses)
+{
+}
+
+GetMyROBlockProp::~GetMyROBlockProp()
+{
+}
+
+/*!
+ * \brief This method is executed consecutively to a GET/SET action:
+ * \param pEvt requestEvent from which the multiplexingContext can be extracted
+ * \param pDev points to the Device or Global instance involved by this request 
+ * \param data composite structure that aggregates one or several types data-entries corresponding to the property definition.
+ * This data object is the input (resp. output) which is passed when invoking a Get (resp. Set). 
+ * \param filter input parameter meant to fine tune the treatment.
+ */
+void GetMyROBlockProp::execute(fesa::RequestEvent* pEvt, Device* pDev, MyROBlockPropPropertyData& data, const MyROBlockPropFilterData& filter)
+{
+}
+
+// Use this member function to tell the framework whether the subscribed clients need to be updated or not. See the FESA wiki for more info
+bool GetMyROBlockProp::hasDataChanged(const fesa::RequestEvent& event, fesa::AbstractDevice& abstractDevice, const MyROBlockPropFilterData& filter) const
+{
+    //Device& device = static_cast<Device&>(abstractDevice);
+    return true;
+}
+
+// This method is called when a new subscription is requested. Returning false will abort the subscription.
+bool GetMyROBlockProp::isFilterValid(const fesa::AbstractDevice& abstractDevice, const MyROBlockPropFilterData& filter) const
+{
+    //Device& device = static_cast<Device&>(abstractDevice);
+    return true;
+}
+
+} // AllTypesFESA
diff --git a/test/AllTypesFESA/src/AllTypesFESA/Server/GetMyROBlockProp.h b/test/AllTypesFESA/src/AllTypesFESA/Server/GetMyROBlockProp.h
new file mode 100644
index 0000000..79859e1
--- /dev/null
+++ b/test/AllTypesFESA/src/AllTypesFESA/Server/GetMyROBlockProp.h
@@ -0,0 +1,28 @@
+
+// FESA framework 
+// Use this code as a starting point to develop your own equipment class 
+
+#ifndef _AllTypesFESA_GetMyROBlockProp_H_
+#define _AllTypesFESA_GetMyROBlockProp_H_
+
+#include <AllTypesFESA/GeneratedCode/GetSetDefaultServerAction.h>
+#include <AllTypesFESA/GeneratedCode/PropertyData.h>
+#include <AllTypesFESA/GeneratedCode/TypeDefinition.h>
+#include <AllTypesFESA/GeneratedCode/Device.h>
+
+namespace AllTypesFESA
+{
+
+class GetMyROBlockProp : public GetMyROBlockPropBase
+{
+public:
+    GetMyROBlockProp(fesa::ServerActionConfig& actionConfig, const fesa::AbstractServiceLocator* serviceLocator, const std::map<std::string, const fesa::AbstractServiceLocator*>& serviceLocatorRelatedClasses);
+    virtual ~GetMyROBlockProp();
+    void execute(fesa::RequestEvent* pEvt, Device* pDev, MyROBlockPropPropertyData& data, const MyROBlockPropFilterData& filter);
+    bool hasDataChanged(const fesa::RequestEvent& event, fesa::AbstractDevice& abstractDevice, const MyROBlockPropFilterData& filter) const;
+    bool isFilterValid(const fesa::AbstractDevice& abstractDevice, const MyROBlockPropFilterData& filter) const;
+};
+
+} // AllTypesFESA
+
+#endif // _AllTypesFESA_GetMyROBlockProp_H_
diff --git a/test/AllTypesFESA/src/AllTypesFESA/Server/GetMyRWBlockProp.cpp b/test/AllTypesFESA/src/AllTypesFESA/Server/GetMyRWBlockProp.cpp
new file mode 100644
index 0000000..b985e1b
--- /dev/null
+++ b/test/AllTypesFESA/src/AllTypesFESA/Server/GetMyRWBlockProp.cpp
@@ -0,0 +1,76 @@
+
+// FESA framework 
+// Use this code as a starting point to develop your own equipment class 
+
+#include <AllTypesFESA/Server/GetMyRWBlockProp.h>
+#include <AllTypesFESA/GeneratedCode/ServiceLocator.h>
+
+#include <AllTypesFESA/Common/AllTypesFESA.h>
+
+#include <cmw-log/Logger.h>
+
+namespace 
+{
+
+cmw::log::Logger& logger = cmw::log::LoggerFactory::getLogger("FESA.USR.AllTypesFESA.Server.GetMyRWBlockProp");
+
+} // namespace
+
+#define LOG_DIAG_IF(topic,message) \
+{ \
+    DiagnosticsDefs::DiagnosticMessage diagMsg(DiagnosticsDefs::Side::user, DiagnosticsDefs::Source::rt); \
+    diagMsg.fesaClass = "AllTypesFESA"; \
+    diagMsg.name = "GetMyRWBlockProp"; \
+    diagMsg.action = DiagnosticsDefs::Action::undefined; \
+    diagMsg.msg = message; \
+    AllTypesFESAServiceLocator_->logDiagnosticMessage(topic, diagMsg); \
+}
+
+#define LOG_DIAG_DEVICE_IF(topic,message,device) \
+{ \
+    if (device->isLoggable()) \
+    { \
+        LOG_DIAG_IF(topic,message); \
+    } \
+}
+
+namespace AllTypesFESA
+{
+
+GetMyRWBlockProp::GetMyRWBlockProp(fesa::ServerActionConfig& actionConfig, const fesa::AbstractServiceLocator* serviceLocator, const std::map<std::string, const fesa::AbstractServiceLocator*>& serviceLocatorRelatedClasses):
+        GetMyRWBlockPropBase(actionConfig, serviceLocator, serviceLocatorRelatedClasses)
+{
+}
+
+GetMyRWBlockProp::~GetMyRWBlockProp()
+{
+}
+
+/*!
+ * \brief This method is executed consecutively to a GET/SET action:
+ * \param pEvt requestEvent from which the multiplexingContext can be extracted
+ * \param pDev points to the Device or Global instance involved by this request 
+ * \param data composite structure that aggregates one or several types data-entries corresponding to the property definition.
+ * This data object is the input (resp. output) which is passed when invoking a Get (resp. Set). 
+ * \param filter input parameter meant to fine tune the treatment.
+ */
+void GetMyRWBlockProp::execute(fesa::RequestEvent* pEvt, Device* pDev, MyRWBlockPropPropertyData& data, const MyRWBlockPropFilterData& filter)
+{
+	AllTypesFESA::MyRWBlock.getOneDevice(pDev, data, true);
+}
+
+// Use this member function to tell the framework whether the subscribed clients need to be updated or not. See the FESA wiki for more info
+bool GetMyRWBlockProp::hasDataChanged(const fesa::RequestEvent& event, fesa::AbstractDevice& abstractDevice, const MyRWBlockPropFilterData& filter) const
+{
+    //Device& device = static_cast<Device&>(abstractDevice);
+    return true;
+}
+
+// This method is called when a new subscription is requested. Returning false will abort the subscription.
+bool GetMyRWBlockProp::isFilterValid(const fesa::AbstractDevice& abstractDevice, const MyRWBlockPropFilterData& filter) const
+{
+    //Device& device = static_cast<Device&>(abstractDevice);
+    return true;
+}
+
+} // AllTypesFESA
diff --git a/test/AllTypesFESA/src/AllTypesFESA/Server/GetMyRWBlockProp.h b/test/AllTypesFESA/src/AllTypesFESA/Server/GetMyRWBlockProp.h
new file mode 100644
index 0000000..d178f2c
--- /dev/null
+++ b/test/AllTypesFESA/src/AllTypesFESA/Server/GetMyRWBlockProp.h
@@ -0,0 +1,28 @@
+
+// FESA framework 
+// Use this code as a starting point to develop your own equipment class 
+
+#ifndef _AllTypesFESA_GetMyRWBlockProp_H_
+#define _AllTypesFESA_GetMyRWBlockProp_H_
+
+#include <AllTypesFESA/GeneratedCode/GetSetDefaultServerAction.h>
+#include <AllTypesFESA/GeneratedCode/PropertyData.h>
+#include <AllTypesFESA/GeneratedCode/TypeDefinition.h>
+#include <AllTypesFESA/GeneratedCode/Device.h>
+
+namespace AllTypesFESA
+{
+
+class GetMyRWBlockProp : public GetMyRWBlockPropBase
+{
+public:
+    GetMyRWBlockProp(fesa::ServerActionConfig& actionConfig, const fesa::AbstractServiceLocator* serviceLocator, const std::map<std::string, const fesa::AbstractServiceLocator*>& serviceLocatorRelatedClasses);
+    virtual ~GetMyRWBlockProp();
+    void execute(fesa::RequestEvent* pEvt, Device* pDev, MyRWBlockPropPropertyData& data, const MyRWBlockPropFilterData& filter);
+    bool hasDataChanged(const fesa::RequestEvent& event, fesa::AbstractDevice& abstractDevice, const MyRWBlockPropFilterData& filter) const;
+    bool isFilterValid(const fesa::AbstractDevice& abstractDevice, const MyRWBlockPropFilterData& filter) const;
+};
+
+} // AllTypesFESA
+
+#endif // _AllTypesFESA_GetMyRWBlockProp_H_
diff --git a/test/AllTypesFESA/src/AllTypesFESA/Server/ServerDeviceClass.cpp b/test/AllTypesFESA/src/AllTypesFESA/Server/ServerDeviceClass.cpp
new file mode 100644
index 0000000..fa13c61
--- /dev/null
+++ b/test/AllTypesFESA/src/AllTypesFESA/Server/ServerDeviceClass.cpp
@@ -0,0 +1,80 @@
+
+// FESA framework 
+// Use this code as a starting point to develop your own equipment class 
+
+#include <AllTypesFESA/Server/ServerDeviceClass.h>
+#include <AllTypesFESA/GeneratedCode/ServiceLocator.h>
+
+#include <cmw-log/Logger.h>
+
+#include <string>
+#include <vector>
+
+namespace
+{
+
+cmw::log::Logger& logger = cmw::log::LoggerFactory::getLogger("FESA.USR.AllTypesFESA.Server.ServerDeviceClass");
+
+} // namespace
+
+namespace AllTypesFESA
+{
+
+ServerDeviceClass* ServerDeviceClass::instance_ = NULL;
+
+ServerDeviceClass::ServerDeviceClass () :
+    ServerDeviceClassGen()
+{
+}
+
+ServerDeviceClass::~ServerDeviceClass()
+{
+}
+
+ServerDeviceClass* ServerDeviceClass::getInstance()
+{
+    if (instance_ == NULL)
+    {
+        instance_ = new ServerDeviceClass();
+    }
+    return instance_;
+}
+
+void ServerDeviceClass::releaseInstance()
+{
+    if (instance_ != NULL) 
+    {
+        delete instance_;
+        instance_ = NULL;
+    }
+}
+
+// This method is called when the FESA class starts up.
+// You can write code that initializes devices in the loop below.
+void ServerDeviceClass::specificInit()
+{
+    const Devices& deviceCol = AllTypesFESAServiceLocator_->getDeviceCollection();
+    for (Devices::const_iterator it = deviceCol.begin(); it != deviceCol.end(); ++it)
+    {
+        try
+        {
+            Device* device = *it;
+            static_cast<void>(device); // This line prevents an "unused variable" warning, it can be removed safely.
+            // Write here some code to initialize devices
+            
+        }
+        catch (const fesa::FesaException& exception)
+        {
+            LOG_ERROR_IF(logger, exception.getMessage());
+            // Re-throwing the exception prevents the process from starting up.
+            throw;
+        }
+    }
+}
+
+void ServerDeviceClass::specificShutDown()
+{
+    // This method is executed just before a normal shut down of the process.
+}
+
+} // AllTypesFESA
diff --git a/test/AllTypesFESA/src/AllTypesFESA/Server/ServerDeviceClass.h b/test/AllTypesFESA/src/AllTypesFESA/Server/ServerDeviceClass.h
new file mode 100644
index 0000000..c9cd1a2
--- /dev/null
+++ b/test/AllTypesFESA/src/AllTypesFESA/Server/ServerDeviceClass.h
@@ -0,0 +1,28 @@
+
+// FESA framework 
+// Use this code as a starting point to develop your own equipment class 
+
+#ifndef _AllTypesFESA_SERVER_DEVICE_CLASS_H_
+#define _AllTypesFESA_SERVER_DEVICE_CLASS_H_
+
+#include <AllTypesFESA/GeneratedCode/ServerDeviceClassGen.h>
+
+namespace AllTypesFESA
+{
+
+class ServerDeviceClass: public ServerDeviceClassGen
+{
+    public:
+        static ServerDeviceClass* getInstance();
+        static void releaseInstance();
+        void specificInit();
+        void specificShutDown();
+    private:
+        ServerDeviceClass();
+        virtual  ~ServerDeviceClass();
+        static ServerDeviceClass* instance_;
+};
+
+} // AllTypesFESA
+
+#endif // _AllTypesFESA_SERVER_DEVICE_CLASS_H_
diff --git a/test/AllTypesFESA/src/AllTypesFESA/Server/SetMyRWBlockProp.cpp b/test/AllTypesFESA/src/AllTypesFESA/Server/SetMyRWBlockProp.cpp
new file mode 100644
index 0000000..1636315
--- /dev/null
+++ b/test/AllTypesFESA/src/AllTypesFESA/Server/SetMyRWBlockProp.cpp
@@ -0,0 +1,63 @@
+
+// FESA framework 
+// Use this code as a starting point to develop your own equipment class 
+
+#include <AllTypesFESA/Server/SetMyRWBlockProp.h>
+#include <AllTypesFESA/GeneratedCode/ServiceLocator.h>
+
+#include <AllTypesFESA/Common/AllTypesFESA.h>
+
+#include <cmw-log/Logger.h>
+
+namespace 
+{
+
+cmw::log::Logger& logger = cmw::log::LoggerFactory::getLogger("FESA.USR.AllTypesFESA.Server.SetMyRWBlockProp");
+
+} // namespace
+
+#define LOG_DIAG_IF(topic,message) \
+{ \
+    DiagnosticsDefs::DiagnosticMessage diagMsg(DiagnosticsDefs::Side::user, DiagnosticsDefs::Source::rt); \
+    diagMsg.fesaClass = "AllTypesFESA"; \
+    diagMsg.name = "SetMyRWBlockProp"; \
+    diagMsg.action = DiagnosticsDefs::Action::undefined; \
+    diagMsg.msg = message; \
+    AllTypesFESAServiceLocator_->logDiagnosticMessage(topic, diagMsg); \
+}
+
+#define LOG_DIAG_DEVICE_IF(topic,message,device) \
+{ \
+    if (device->isLoggable()) \
+    { \
+        LOG_DIAG_IF(topic,message); \
+    } \
+}
+
+namespace AllTypesFESA
+{
+
+SetMyRWBlockProp::SetMyRWBlockProp(fesa::ServerActionConfig& actionConfig, const fesa::AbstractServiceLocator* serviceLocator, const std::map<std::string, const fesa::AbstractServiceLocator*>& serviceLocatorRelatedClasses):
+        SetMyRWBlockPropBase(actionConfig, serviceLocator, serviceLocatorRelatedClasses)
+{
+}
+
+SetMyRWBlockProp::~SetMyRWBlockProp()
+{
+}
+
+/*!
+ * \brief This method is executed consecutively to a GET/SET action:
+ * \param pEvt requestEvent from which the multiplexingContext can be extracted
+ * \param pDev points to the Device or Global instance involved by this request 
+ * \param data composite structure that aggregates one or several types data-entries corresponding to the property definition.
+ * This data object is the input (resp. output) which is passed when invoking a Get (resp. Set). 
+ * \param filter input parameter meant to fine tune the treatment.
+ */
+void SetMyRWBlockProp::execute(fesa::RequestEvent* pEvt, Device* pDev, const MyRWBlockPropPropertyData& data, const MyRWBlockPropFilterData& filter)
+{
+	auto context = pEvt->getMultiplexingContext();
+	AllTypesFESA::MyRWBlock.setOneDevice(pDev, data, true, context);
+}
+
+} // AllTypesFESA
diff --git a/test/AllTypesFESA/src/AllTypesFESA/Server/SetMyRWBlockProp.h b/test/AllTypesFESA/src/AllTypesFESA/Server/SetMyRWBlockProp.h
new file mode 100644
index 0000000..c2343c4
--- /dev/null
+++ b/test/AllTypesFESA/src/AllTypesFESA/Server/SetMyRWBlockProp.h
@@ -0,0 +1,26 @@
+
+// FESA framework 
+// Use this code as a starting point to develop your own equipment class 
+
+#ifndef _AllTypesFESA_SetMyRWBlockProp_H_
+#define _AllTypesFESA_SetMyRWBlockProp_H_
+
+#include <AllTypesFESA/GeneratedCode/GetSetDefaultServerAction.h>
+#include <AllTypesFESA/GeneratedCode/PropertyData.h>
+#include <AllTypesFESA/GeneratedCode/TypeDefinition.h>
+#include <AllTypesFESA/GeneratedCode/Device.h>
+
+namespace AllTypesFESA
+{
+
+class SetMyRWBlockProp : public SetMyRWBlockPropBase
+{
+public:
+    SetMyRWBlockProp(fesa::ServerActionConfig& actionConfig, const fesa::AbstractServiceLocator* serviceLocator, const std::map<std::string, const fesa::AbstractServiceLocator*>& serviceLocatorRelatedClasses);
+    virtual ~SetMyRWBlockProp();
+    void execute(fesa::RequestEvent* pEvt, Device* pDev, const MyRWBlockPropPropertyData& data, const MyRWBlockPropFilterData& filter);
+};
+
+} // AllTypesFESA
+
+#endif // _AllTypesFESA_SetMyRWBlockProp_H_
diff --git a/test/AllTypesFESA/src/AllTypesFESA/Server/SetMyWOBlockProp.cpp b/test/AllTypesFESA/src/AllTypesFESA/Server/SetMyWOBlockProp.cpp
new file mode 100644
index 0000000..956908c
--- /dev/null
+++ b/test/AllTypesFESA/src/AllTypesFESA/Server/SetMyWOBlockProp.cpp
@@ -0,0 +1,59 @@
+
+// FESA framework 
+// Use this code as a starting point to develop your own equipment class 
+
+#include <AllTypesFESA/Server/SetMyWOBlockProp.h>
+#include <AllTypesFESA/GeneratedCode/ServiceLocator.h>
+
+#include <cmw-log/Logger.h>
+
+namespace 
+{
+
+cmw::log::Logger& logger = cmw::log::LoggerFactory::getLogger("FESA.USR.AllTypesFESA.Server.SetMyWOBlockProp");
+
+} // namespace
+
+#define LOG_DIAG_IF(topic,message) \
+{ \
+    DiagnosticsDefs::DiagnosticMessage diagMsg(DiagnosticsDefs::Side::user, DiagnosticsDefs::Source::rt); \
+    diagMsg.fesaClass = "AllTypesFESA"; \
+    diagMsg.name = "SetMyWOBlockProp"; \
+    diagMsg.action = DiagnosticsDefs::Action::undefined; \
+    diagMsg.msg = message; \
+    AllTypesFESAServiceLocator_->logDiagnosticMessage(topic, diagMsg); \
+}
+
+#define LOG_DIAG_DEVICE_IF(topic,message,device) \
+{ \
+    if (device->isLoggable()) \
+    { \
+        LOG_DIAG_IF(topic,message); \
+    } \
+}
+
+namespace AllTypesFESA
+{
+
+SetMyWOBlockProp::SetMyWOBlockProp(fesa::ServerActionConfig& actionConfig, const fesa::AbstractServiceLocator* serviceLocator, const std::map<std::string, const fesa::AbstractServiceLocator*>& serviceLocatorRelatedClasses):
+        SetMyWOBlockPropBase(actionConfig, serviceLocator, serviceLocatorRelatedClasses)
+{
+}
+
+SetMyWOBlockProp::~SetMyWOBlockProp()
+{
+}
+
+/*!
+ * \brief This method is executed consecutively to a GET/SET action:
+ * \param pEvt requestEvent from which the multiplexingContext can be extracted
+ * \param pDev points to the Device or Global instance involved by this request 
+ * \param data composite structure that aggregates one or several types data-entries corresponding to the property definition.
+ * This data object is the input (resp. output) which is passed when invoking a Get (resp. Set). 
+ * \param filter input parameter meant to fine tune the treatment.
+ */
+void SetMyWOBlockProp::execute(fesa::RequestEvent* pEvt, Device* pDev, const MyWOBlockPropPropertyData& data, const MyWOBlockPropFilterData& filter)
+{
+}
+
+} // AllTypesFESA
diff --git a/test/AllTypesFESA/src/AllTypesFESA/Server/SetMyWOBlockProp.h b/test/AllTypesFESA/src/AllTypesFESA/Server/SetMyWOBlockProp.h
new file mode 100644
index 0000000..05a5a26
--- /dev/null
+++ b/test/AllTypesFESA/src/AllTypesFESA/Server/SetMyWOBlockProp.h
@@ -0,0 +1,26 @@
+
+// FESA framework 
+// Use this code as a starting point to develop your own equipment class 
+
+#ifndef _AllTypesFESA_SetMyWOBlockProp_H_
+#define _AllTypesFESA_SetMyWOBlockProp_H_
+
+#include <AllTypesFESA/GeneratedCode/GetSetDefaultServerAction.h>
+#include <AllTypesFESA/GeneratedCode/PropertyData.h>
+#include <AllTypesFESA/GeneratedCode/TypeDefinition.h>
+#include <AllTypesFESA/GeneratedCode/Device.h>
+
+namespace AllTypesFESA
+{
+
+class SetMyWOBlockProp : public SetMyWOBlockPropBase
+{
+public:
+    SetMyWOBlockProp(fesa::ServerActionConfig& actionConfig, const fesa::AbstractServiceLocator* serviceLocator, const std::map<std::string, const fesa::AbstractServiceLocator*>& serviceLocatorRelatedClasses);
+    virtual ~SetMyWOBlockProp();
+    void execute(fesa::RequestEvent* pEvt, Device* pDev, const MyWOBlockPropPropertyData& data, const MyWOBlockPropFilterData& filter);
+};
+
+} // AllTypesFESA
+
+#endif // _AllTypesFESA_SetMyWOBlockProp_H_
diff --git a/test/AllTypesFESA_DU/.gitignore b/test/AllTypesFESA_DU/.gitignore
new file mode 100644
index 0000000..e06478b
--- /dev/null
+++ b/test/AllTypesFESA_DU/.gitignore
@@ -0,0 +1,15 @@
+.settings/
+Makefile
+Makefile.dep
+Makefile.silecs
+.project
+.cproject
+bin/
+build/
+generated/
+precompiled/
+src/test/*/*
+!src/test/*/*.instance
+!src/test/*/README
+*.backup
+generated-silecs
diff --git a/test/AllTypesFESA_DU/Makefile.specific b/test/AllTypesFESA_DU/Makefile.specific
new file mode 100644
index 0000000..12c851c
--- /dev/null
+++ b/test/AllTypesFESA_DU/Makefile.specific
@@ -0,0 +1,19 @@
+# Include SILECS makefile
+include Makefile.silecs
+# Additional compiler warning flags
+override WARNFLAGS += 
+
+# Additional libs and flags which are common to both the Realtime and the Server part
+COMPILER_FLAGS += 
+LINKER_FLAGS += 
+
+# Additional libs and flags which are specific to the Realtime part
+COMPILER_RT_FLAGS += 
+LINKER_RT_FLAGS += 
+
+# Additional libs and flags which are specific to the Server part
+COMPILER_SERVER_FLAGS += 
+LINKER_SERVER_FLAGS += 
+
+# Additional headers (Custom.h Specific.h ...) which need to be released
+EXTRA_HEADERS += 
diff --git a/test/AllTypesFESA_DU/README.md b/test/AllTypesFESA_DU/README.md
new file mode 100644
index 0000000..3bd0e6e
--- /dev/null
+++ b/test/AllTypesFESA_DU/README.md
@@ -0,0 +1,9 @@
+# Usage
+
+This is a deploy unit for testing the Silecs AllTypes testing class. It configures a single PLC as two PLCs with one device in device mode and one in block mode. This way both modes can be tested with a single deployment.
+
+However this requires a custom user hosts file before starting the class. The file is provided in the DU named `hosts`. Before starting the class you have to set an environment variable.
+
+```
+export HOSTALIASES=<DU_path>/hosts
+```
diff --git a/test/AllTypesFESA_DU/hosts b/test/AllTypesFESA_DU/hosts
new file mode 100644
index 0000000..ff9b333
--- /dev/null
+++ b/test/AllTypesFESA_DU/hosts
@@ -0,0 +1,2 @@
+tsts7001-device tsts7001
+tsts7001-block tsts7001
diff --git a/test/AllTypesFESA_DU/src/AllTypesFESA_DU.deploy b/test/AllTypesFESA_DU/src/AllTypesFESA_DU.deploy
new file mode 100644
index 0000000..8456247
--- /dev/null
+++ b/test/AllTypesFESA_DU/src/AllTypesFESA_DU.deploy
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<deploy-unit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="file:/opt/fesa/fesa-model-gsi/7.5.0/xml/deployment/deployment-gsi.xsd"><include><xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="/home/cosylab/mmarn/lnx/workspace751/opensilecs/test/AllTypesFESA/generated/xml/AllTypesFESASchedulingView.xml"/></include>
+	<information>
+		<deploy-unit-name>AllTypesFESA_DU</deploy-unit-name>
+		<deploy-unit-major-version>0</deploy-unit-major-version>
+		<deploy-unit-minor-version>1</deploy-unit-minor-version>
+		<deploy-unit-tiny-version>0</deploy-unit-tiny-version>
+		<description>Empty Template description</description>
+		<fesa-version>7.5.0</fesa-version>
+	</information>
+	<ownership>
+		<responsible name="Undefined"/>
+		<creator login="mmarn"/>
+	</ownership>
+    <class>
+        <class-name>AllTypesFESA</class-name>
+        <class-major-version>0</class-major-version>
+        <class-minor-version>1</class-minor-version>
+        <class-tiny-version>0</class-tiny-version>
+        <device-instance>required</device-instance>
+    <path>/home/cosylab/mmarn/lnx/workspace751/opensilecs/test/AllTypesFESA</path></class>
+    <scheduler>
+        <concurrency-layer name="Default" threading-policy="single" id="_231222092729_0">
+            <scheduling-unit scheduling-unit-name-ref="AllTypesFESA::StatusUpdateSchedulingUnit"/>
+        </concurrency-layer>
+    </scheduler>
+	
+	<executable>
+		
+	<mixed extension="_M"/>
+    </executable>
+</deploy-unit>
diff --git a/test/AllTypesFESA_DU/src/AllTypesFESA_DU.silecsdeploy b/test/AllTypesFESA_DU/src/AllTypesFESA_DU.silecsdeploy
new file mode 100644
index 0000000..f1bdffb
--- /dev/null
+++ b/test/AllTypesFESA_DU/src/AllTypesFESA_DU.silecsdeploy
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<SILECS-Deploy silecs-version="3.0.0" created="12/22/2023" updated="12/22/2023" 
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:noNamespaceSchemaLocation="/home/cosylab/mmarn/lnx/workspace751/opensilecs/build/3.0.0/silecs-model/xml/DeploySchema.xsd">
+    <Information>
+        <Owner user-login="mmarn"/>
+        <Editor user-login="mmarn"/>
+    </Information>
+    <Deploy-Unit name="AllTypesFESA_DU" version="0.1.0"/>
+    <SilecsDesign silecs-design-name="AllTypesFESA" silecs-design-version="0.1.0"/>    
+    <Controller host-name="tsts7001-device">
+        <Siemens-PLC system="TIA-PORTAL" model="SIMATIC_S7-1500" protocol="DEVICE_MODE" base-DB-number="1000">
+            <Device silecs-device-label="allTypesDevModeSilecsDevice" silecs-design-ref="AllTypesFESA" fesa-device-name="allTypesDevModeFesaDevice" fesa-fec-name="localhost"></Device>
+        </Siemens-PLC>
+    </Controller>
+    <Controller host-name="tsts7001-block">
+    	<Siemens-PLC model="SIMATIC_S7-1500" system="STEP-7"
+    		base-DB-number="2000" protocol="BLOCK_MODE">
+    		<Device silecs-device-label="allTypesBlkModeSilecsDevice"
+    			silecs-design-ref="AllTypesFESA" fesa-device-name="allTypesBlkModeFesaDevice"
+    			fesa-fec-name="localhost" />
+    	</Siemens-PLC>
+    </Controller>
+</SILECS-Deploy>
\ No newline at end of file
diff --git a/test/AllTypesFESA_DU/src/AllTypesFESA_DU/RealTime/RTEquipment.cpp b/test/AllTypesFESA_DU/src/AllTypesFESA_DU/RealTime/RTEquipment.cpp
new file mode 100644
index 0000000..01afd49
--- /dev/null
+++ b/test/AllTypesFESA_DU/src/AllTypesFESA_DU/RealTime/RTEquipment.cpp
@@ -0,0 +1,26 @@
+#include <AllTypesFESA_DU/RealTime/RTEquipment.h>
+#include <fesa-core/Core/AbstractServiceLocator.h>
+#include <AllTypesFESA/GeneratedCode/ServiceLocator.h>
+namespace AllTypesFESA_DU
+{
+
+RTEquipment::RTEquipment(const std::map<std::string, fesa::AbstractServiceLocator*>& serviceLocatorCol) :
+	RTEquipmentGen(serviceLocatorCol)
+{
+}
+
+RTEquipment::~RTEquipment()
+{
+}
+
+void RTEquipment::specificInit()
+{
+}
+
+void RTEquipment::handleEventSourceError (fesa::AbstractEventSource* eventSource,fesa::FesaException& exception)
+{
+}
+void RTEquipment::handleSchedulerError (fesa::RTScheduler* scheduler,fesa::FesaException& exception)
+{
+}
+}
diff --git a/test/AllTypesFESA_DU/src/AllTypesFESA_DU/RealTime/RTEquipment.h b/test/AllTypesFESA_DU/src/AllTypesFESA_DU/RealTime/RTEquipment.h
new file mode 100644
index 0000000..48cff2a
--- /dev/null
+++ b/test/AllTypesFESA_DU/src/AllTypesFESA_DU/RealTime/RTEquipment.h
@@ -0,0 +1,36 @@
+#ifndef AllTypesFESA_DU_RT_EQUIPMENT_H_
+#define AllTypesFESA_DU_RT_EQUIPMENT_H_
+
+#include "AllTypesFESA_DU/GeneratedCode/RTEquipmentGen.h"
+#include <fesa-core/RealTime/AbstractEventSource.h>
+#include <fesa-core/RealTime/RTScheduler.h>
+
+namespace AllTypesFESA_DU
+{
+
+class RTEquipment : public RTEquipmentGen
+{
+	public:
+
+		 RTEquipment (const std::map<std::string, fesa::AbstractServiceLocator*>& serviceLocatorCol);
+
+		virtual ~RTEquipment ();
+
+		void specificInit();
+
+		/*!
+		* \brief this method is called when an error occurs in a AbstractEventSource
+		* \param eventSource in which the error occurred
+		* \param exception with the error code and error description
+		*/
+		void handleEventSourceError (fesa::AbstractEventSource* eventSource,fesa::FesaException& exception);
+
+		/*!
+		* \brief this method is called when an error occurs in a AbstractEventSource
+		* \param eventSource in which the error occurred
+		* \param exception with the error code and error description
+		*/
+		void handleSchedulerError (fesa::RTScheduler* scheduler,fesa::FesaException& exception);
+};
+}
+#endif 
diff --git a/test/AllTypesFESA_DU/src/AllTypesFESA_DU/Server/ServerEquipment.cpp b/test/AllTypesFESA_DU/src/AllTypesFESA_DU/Server/ServerEquipment.cpp
new file mode 100644
index 0000000..e2cbeb8
--- /dev/null
+++ b/test/AllTypesFESA_DU/src/AllTypesFESA_DU/Server/ServerEquipment.cpp
@@ -0,0 +1,18 @@
+#include <AllTypesFESA_DU/Server/ServerEquipment.h>
+#include <AllTypesFESA/GeneratedCode/ServiceLocator.h>
+namespace AllTypesFESA_DU
+{
+
+ServerEquipment::ServerEquipment (const std::map<std::string, fesa::AbstractServiceLocator*>& serviceLocatorCol) : ServerEquipmentGen(serviceLocatorCol)
+{
+}
+
+ServerEquipment::~ServerEquipment ()
+{
+}
+
+void ServerEquipment:: specificInit () 
+{
+}
+
+}
diff --git a/test/AllTypesFESA_DU/src/AllTypesFESA_DU/Server/ServerEquipment.h b/test/AllTypesFESA_DU/src/AllTypesFESA_DU/Server/ServerEquipment.h
new file mode 100644
index 0000000..240e838
--- /dev/null
+++ b/test/AllTypesFESA_DU/src/AllTypesFESA_DU/Server/ServerEquipment.h
@@ -0,0 +1,25 @@
+#ifndef AllTypesFESA_DU_SERVER_EQUIPMENT_H_
+#define AllTypesFESA_DU_SERVER_EQUIPMENT_H_
+
+#include <fesa-core/Server/AbstractServerEquipment.h>
+
+#include <fesa-core/Exception/FesaException.h>
+
+#include <AllTypesFESA_DU/GeneratedCode/ServerEquipmentGen.h>
+
+namespace AllTypesFESA_DU
+{
+
+class ServerEquipment : public ServerEquipmentGen
+{
+	public:
+
+		ServerEquipment (const std::map<std::string, fesa::AbstractServiceLocator*>& serviceLocatorCol);
+
+		virtual  ~ServerEquipment();
+
+		void specificInit();
+
+};
+}
+#endif
diff --git a/test/AllTypesFESA_DU/src/test/vmla016/DeviceData_AllTypesFESA_DU.instance b/test/AllTypesFESA_DU/src/test/vmla016/DeviceData_AllTypesFESA_DU.instance
new file mode 100644
index 0000000..5a54b25
--- /dev/null
+++ b/test/AllTypesFESA_DU/src/test/vmla016/DeviceData_AllTypesFESA_DU.instance
@@ -0,0 +1,204 @@
+<?xml version="1.0" encoding="UTF-8"?><instantiation-unit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="file:/home/cosylab/mmarn/lnx/workspace751/opensilecs/test/AllTypesFESA_DU/generated/xml/vmla016-InstantiationSchemaFEC.xsd">
+    <information>
+        <deploy-unit-name>AllTypesFESA_DU</deploy-unit-name>
+        <deploy-unit-version>0.1.0</deploy-unit-version>
+        <fec-name>vmla016</fec-name>
+        <server-name>AllTypesFESA_DU.vmla016</server-name>
+        <timestamp>22/12/2023 11:21</timestamp>
+        <fesa-version>7.5.0</fesa-version>
+    </information>
+    <prio-management>
+        <classes>
+            <AllTypesFESA>
+                <client-notification-threads>
+                    <thread-default/>
+                </client-notification-threads>
+            </AllTypesFESA>
+        </classes>
+        <deploy-unit/>
+    </prio-management>
+    <classes>
+        <AllTypesFESA>
+            <events-mapping>
+                <StatusUpdateEvent idref="_231221102304_163">
+                    <event-configuration name="StatusUpdateEC">
+                        <Timer>
+                            <timer-event period="1000"/>
+                        </Timer>
+                    </event-configuration>
+                    <unused-event-configuration name="NONE"/>
+                </StatusUpdateEvent>
+            </events-mapping>
+            <device-instance name="allTypesDevModeFesaDevice" state="development">
+                <configuration>
+                    <description value=""/>
+                    <accelerator value="NONE"/>
+                    <timingDomain value="NONE"/>
+                    <acceleratorZone value="NONE"/>
+                    <mainMuxCriterion value="NONE"/>
+                    <C_dt_fesa idref="_231221102304_164">
+                        <value>{{0,0},{0,0}}</value>
+                    </C_dt_fesa>
+                    <C_real_fesa idref="_231221102304_165">
+                        <value>{{0,0},{0,0}}</value>
+                    </C_real_fesa>
+                    <C_dint_fesa idref="_231221102304_166">
+                        <value>{{0,0},{0,0}}</value>
+                    </C_dint_fesa>
+                    <C_int_fesa idref="_231221102304_167">
+                        <value>{{0,0},{0,0}}</value>
+                    </C_int_fesa>
+                    <C_dword_fesa idref="_231221102304_168">
+                        <value>{{0,0},{0,0}}</value>
+                    </C_dword_fesa>
+                    <C_word_fesa idref="_231221102304_169">
+                        <value>{{0,0},{0,0}}</value>
+                    </C_word_fesa>
+                    <C_byte_fesa idref="_231221102304_170">
+                        <value>{{0,0},{0,0}}</value>
+                    </C_byte_fesa>
+                    <C_char_fesa idref="_231221102304_171">
+                        <value>{{0,0},{0,0}}</value>
+                    </C_char_fesa>
+                    <C_date_fesa idref="_231221102304_172">
+                        <value>{{0,0},{0,0}}</value>
+                    </C_date_fesa>
+                    <C_float32_fesa idref="_231221102304_173">
+                        <value>{{0,0},{0,0}}</value>
+                    </C_float32_fesa>
+                    <C_uint32_fesa idref="_231221102304_174">
+                        <value>{{0,0},{0,0}}</value>
+                    </C_uint32_fesa>
+                    <C_int32_fesa idref="_231221102304_175">
+                        <value>{{0,0},{0,0}}</value>
+                    </C_int32_fesa>
+                    <C_uint16_fesa idref="_231221102304_176">
+                        <value>{{0,0},{0,0}}</value>
+                    </C_uint16_fesa>
+                    <C_int16_fesa idref="_231221102304_177">
+                        <value>{{0,0},{0,0}}</value>
+                    </C_int16_fesa>
+                    <C_uint8_fesa idref="_231221102304_178">
+                        <value>{{0,0},{0,0}}</value>
+                    </C_uint8_fesa>
+                    <C_int8 idref="_231221102304_179">
+                        <value>{{0,0},{0,0}}</value>
+                    </C_int8>
+                    <plcDeviceLabel idref="_231221102304_180">
+                        <value>allTypesDevModeSilecsDevice</value>
+                    </plcDeviceLabel>
+                    <plcHostName idref="_231221102304_181">
+                        <value>tsts7001-device</value>
+                    </plcHostName>
+                    <detailedStatus_labels idref="_231221102304_182">
+                        <value>{myStatusLabel1,myStatusLabel2}</value>
+                    </detailedStatus_labels>
+                    <detailedStatus_severity idref="_231221102304_183">
+                        <value>{INFO,INFO}</value>
+                    </detailedStatus_severity>
+                    <moduleStatus_labels idref="_231221102304_184">
+                        <value>{myModule1,myModule2}</value>
+                    </moduleStatus_labels>
+                </configuration>
+                <events-mapping>
+                    <StatusUpdateEvent idref="_231221102304_163">
+                        <event-configuration-ref name="StatusUpdateEC"/>
+                    </StatusUpdateEvent>
+                </events-mapping>
+            </device-instance>
+            <device-instance name="allTypesBlkModeFesaDevice" state="development">
+                <configuration>
+                    <description value=""/>
+                    <accelerator value="NONE"/>
+                    <timingDomain value="NONE"/>
+                    <acceleratorZone value="NONE"/>
+                    <mainMuxCriterion value="NONE"/>
+                    <C_dt_fesa idref="_231221102304_164">
+                        <value>{{0,0},{0,0}}</value>
+                    </C_dt_fesa>
+                    <C_real_fesa idref="_231221102304_165">
+                        <value>{{0,0},{0,0}}</value>
+                    </C_real_fesa>
+                    <C_dint_fesa idref="_231221102304_166">
+                        <value>{{0,0},{0,0}}</value>
+                    </C_dint_fesa>
+                    <C_int_fesa idref="_231221102304_167">
+                        <value>{{0,0},{0,0}}</value>
+                    </C_int_fesa>
+                    <C_dword_fesa idref="_231221102304_168">
+                        <value>{{0,0},{0,0}}</value>
+                    </C_dword_fesa>
+                    <C_word_fesa idref="_231221102304_169">
+                        <value>{{0,0},{0,0}}</value>
+                    </C_word_fesa>
+                    <C_byte_fesa idref="_231221102304_170">
+                        <value>{{0,0},{0,0}}</value>
+                    </C_byte_fesa>
+                    <C_char_fesa idref="_231221102304_171">
+                        <value>{{0,0},{0,0}}</value>
+                    </C_char_fesa>
+                    <C_date_fesa idref="_231221102304_172">
+                        <value>{{0,0},{0,0}}</value>
+                    </C_date_fesa>
+                    <C_float32_fesa idref="_231221102304_173">
+                        <value>{{0,0},{0,0}}</value>
+                    </C_float32_fesa>
+                    <C_uint32_fesa idref="_231221102304_174">
+                        <value>{{0,0},{0,0}}</value>
+                    </C_uint32_fesa>
+                    <C_int32_fesa idref="_231221102304_175">
+                        <value>{{0,0},{0,0}}</value>
+                    </C_int32_fesa>
+                    <C_uint16_fesa idref="_231221102304_176">
+                        <value>{{0,0},{0,0}}</value>
+                    </C_uint16_fesa>
+                    <C_int16_fesa idref="_231221102304_177">
+                        <value>{{0,0},{0,0}}</value>
+                    </C_int16_fesa>
+                    <C_uint8_fesa idref="_231221102304_178">
+                        <value>{{0,0},{0,0}}</value>
+                    </C_uint8_fesa>
+                    <C_int8 idref="_231221102304_179">
+                        <value>{{0,0},{0,0}}</value>
+                    </C_int8>
+                    <plcDeviceLabel idref="_231221102304_180">
+                        <value>allTypesBlkModeSilecsDevice</value>
+                    </plcDeviceLabel>
+                    <plcHostName idref="_231221102304_181">
+                        <value>tsts7001-block</value>
+                    </plcHostName>
+                    <detailedStatus_labels idref="_231221102304_182">
+                        <value>{myStatusLabel1,myStatusLabel2}</value>
+                    </detailedStatus_labels>
+                    <detailedStatus_severity idref="_231221102304_183">
+                        <value>{INFO,INFO}</value>
+                    </detailedStatus_severity>
+                    <moduleStatus_labels idref="_231221102304_184">
+                        <value>{myModule1,myModule2}</value>
+                    </moduleStatus_labels>
+                </configuration>
+                <events-mapping>
+                    <StatusUpdateEvent idref="_231221102304_163">
+                        <event-configuration-ref name="StatusUpdateEC"/>
+                    </StatusUpdateEvent>
+                </events-mapping>
+            </device-instance>
+            <global-instance name="GD_AllTypesFESA_DU_AllTypesFESA.vmla016" state="development">
+                <configuration>
+                    <description value=""/>
+                    <accelerator value="NONE"/>
+                    <timingDomain value="NONE"/>
+                    <acceleratorZone value="NONE"/>
+                    <mainMuxCriterion value="NONE"/>
+                    <plcClassVersion idref="_231221102304_266">
+                        <value>0.1.0</value>
+                    </plcClassVersion>
+                    <deviceNameTimingReceiver idref="_231221102304_267">
+                        <dim value="0"/>
+                        <value/>
+                    </deviceNameTimingReceiver>
+                </configuration>
+            </global-instance>
+        </AllTypesFESA>
+    </classes>
+</instantiation-unit>
-- 
GitLab