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): ...@@ -41,7 +41,7 @@ class Femto(Device):
OPC_Server_Name OPC_Server_Name
- Type:'DevString' - Type:'DevString'
OPC_Server_Port OPC_Server_Port
- Type:'DevString' - Type:'DevULong'
OPC_time_out OPC_time_out
- Type:'DevULong' - Type:'DevULong'
""" """
...@@ -58,8 +58,8 @@ class Femto(Device): ...@@ -58,8 +58,8 @@ class Femto(Device):
) )
OPC_Server_Port = device_property( OPC_Server_Port = device_property(
dtype='DevString', dtype='DevULong',
default_value="55555" default_value=55555
) )
OPC_time_out = device_property( OPC_time_out = device_property(
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
<DefaultPropValue>okeanos</DefaultPropValue> <DefaultPropValue>okeanos</DefaultPropValue>
</deviceProperties> </deviceProperties>
<deviceProperties name="OPC_Server_Port" description=""> <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"/> <status abstract="false" inherited="false" concrete="true" concreteHere="true"/>
<DefaultPropValue>55555</DefaultPropValue> <DefaultPropValue>55555</DefaultPropValue>
</deviceProperties> </deviceProperties>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment