Browse Source

Fixed data type exclusion list in generate_types.py by adding two missing data structures that are already hard-coded present by open62541 C code. This collides on generation of full data type list that is defined by Opc.Ua.Types.bsd (#1086)

* added two missing internal data types to data type exclusion list
collides with generation of full data type list which contains these

* replaced tabs by spaces in python
Thomas Bender 7 years ago
parent
commit
97e741f43a
1 changed files with 1 additions and 0 deletions
  1. 1 0
      tools/generate_datatypes.py

+ 1 - 0
tools/generate_datatypes.py

@@ -19,6 +19,7 @@ typedescriptions = {} # contains type nodeids
 excluded_types = ["NodeIdType", "InstanceNode", "TypeNode", "Node", "ObjectNode",
                   "ObjectTypeNode", "VariableNode", "VariableTypeNode", "ReferenceTypeNode",
                   "MethodNode", "ViewNode", "DataTypeNode",
+                  "NumericRange", "NumericRangeDimensions",
                   "UA_ServerDiagnosticsSummaryDataType", "UA_SamplingIntervalDiagnosticsDataType",
                   "UA_SessionSecurityDiagnosticsDataType", "UA_SubscriptionDiagnosticsDataType",
                   "UA_SessionDiagnosticsDataType"]