Commit 6932e627 authored by Giuseppe Carboni's avatar Giuseppe Carboni Committed by GitHub
Browse files

Fix #365, fixed some issues relative to the NotoMinorServo configuration (#370)

parent d85db993
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:log="urn:schemas-cosylab-com:LoggingConfig:1.0"
	Timeout="600.0"
	ImplLang="py"
	ImplLang="cpp"
	ServerThreads="5">

	<Autoload>
+10 −1
Original line number Diff line number Diff line
@@ -2,7 +2,16 @@
<!--
   - History:
-->
<NotoActiveSurfaceBoss xmlns="urn:schemas-cosylab-com:NotoActiveSurfaceBoss:1.0" xmlns:baci="urn:schemas-cosylab-com:BACI:1.0" xmlns:cdb="urn:schemas-cosylab-com:CDB:1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" WatchingThreadTime="200000" WorkingThreadTime="200000" profile="1" IPAddress="192.167.187.92" Port="5001">
<NotoActiveSurfaceBoss
	xmlns="urn:schemas-cosylab-com:NotoActiveSurfaceBoss:1.0"
	xmlns:baci="urn:schemas-cosylab-com:BACI:1.0"
	xmlns:cdb="urn:schemas-cosylab-com:CDB:1.0"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	WatchingThreadTime="200000"
	WorkingThreadTime="200000"
	profile="1"
	IPAddress="192.167.187.92"
	Port="5001">
	<status />
	<enabled />
	<pprofile />
+13 −10
Original line number Diff line number Diff line
@@ -7,9 +7,12 @@
    xmlns:baci="urn:schemas-cosylab-com:BACI:1.0"
    xmlns:cdb="urn:schemas-cosylab-com:CDB:1.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	ipAddress="192.167.187.92"
	ipPort="5003">
	
    WatchingThreadTime="200000"
    WorkingThreadTime="200000"
    profile="1"
    IPAddress="192.167.187.92"
    Port="5003">
    <status />

    <enabled />
    <tracking />
</NotoMinorServoBoss>
+4 −4
Original line number Diff line number Diff line
@@ -9,9 +9,9 @@
           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
              
	Name="Boss"
	Code="NotoMinorServoBoss.MinorServoImpl"
	Type="IDL:alma/MinorServo/MinorServoBoss:1.0"
	Code="NotoMinorServoBossImpl"
	Type="IDL:alma/MinorServo/NotoMinorServoBoss:1.0"
	Container="NotoMinorServoContainer"
    ImplLang="py"
	ImplLang="cpp"
	Default="true"
/>
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xmlns:log="urn:schemas-cosylab-com:LoggingConfig:1.0"
	Timeout="600.0"
	ImplLang="py"
	ImplLang="cpp"
	ServerThreads="5">

	<Autoload>
Loading