Skip to content
Snippets Groups Projects
Commit d90e61eb authored by Thomas Juerges's avatar Thomas Juerges
Browse files

Correct the data type of the OPC_port property

parent 2d59b1df
No related branches found
No related tags found
No related merge requests found
......@@ -41,7 +41,7 @@ class Femto(Device):
OPC_Server_Name
- Type:'DevString'
OPC_Server_Port
- Type:'DevString'
- Type:'DevULong'
OPC_time_out
- Type:'DevULong'
"""
......@@ -58,8 +58,8 @@ class Femto(Device):
)
OPC_Server_Port = device_property(
dtype='DevString',
default_value="55555"
dtype='DevULong',
default_value=55555
)
OPC_time_out = device_property(
......
......@@ -11,7 +11,7 @@
<DefaultPropValue>okeanos</DefaultPropValue>
</deviceProperties>
<deviceProperties name="OPC_Server_Port" description="">
<type xsi:type="pogoDsl:StringType"/>
<type xsi:type="pogoDsl:UIntType"/>
<status abstract="false" inherited="false" concrete="true" concreteHere="true"/>
<DefaultPropValue>55555</DefaultPropValue>
</deviceProperties>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment