Now expects 1 more columns in VARIABLE.CSV file generated by MatIEC. Pair with MatIEC commit 9cb7c8bf7dbc :
authorEdouard Tisserant
Tue, 09 Jul 2019 09:49:30 +0200
changeset 2619 b1ebe2803285
parent 2618 4eca95f91cba
child 2620 063391cd313d
Now expects 1 more columns in VARIABLE.CSV file generated by MatIEC. Pair with MatIEC commit 9cb7c8bf7dbc :
Add a column to VARIABLES.CSV, containing variable (derived) type name, additionally to current last column contyaining base type name
ProjectController.py
--- a/ProjectController.py	Tue Jun 18 14:09:23 2019 +0200
+++ b/ProjectController.py	Tue Jul 09 09:49:30 2019 +0200
@@ -947,7 +947,7 @@
                 # describes CSV columns
                 ProgramsListAttributeName = ["num", "C_path", "type"]
                 VariablesListAttributeName = [
-                    "num", "vartype", "IEC_path", "C_path", "type"]
+                    "num", "vartype", "IEC_path", "C_path", "type", "derived"]
                 self._ProgramList = []
                 self._VariablesList = []
                 self._DbgVariablesList = []