Commit 7d2aeaf0 authored by Giuseppe Carboni's avatar Giuseppe Carboni
Browse files

Merge branch 'centos_7_compatibility' of https://github.com/discos/discos into fix-issue-885

parents 40f41152 fc2c1f1b
Loading
Loading
Loading
Loading
+6 −0
Original line number Original line Diff line number Diff line
@@ -463,6 +463,12 @@ def integration():
    sets the integration time
    sets the integration time
    """
    """


def backendPark():
    """
    backendPark
    deprogram all the boards
    """

def log():
def log():
    """
    """
    log=logfilename
    log=logfilename
+2 −0
Original line number Original line Diff line number Diff line
@@ -303,6 +303,8 @@ module Backends {


		ACS::doubleSeq getRms() raises (ComponentErrors::ComponentErrorsEx,BackendsErrors::BackendsErrorsEx);
		ACS::doubleSeq getRms() raises (ComponentErrors::ComponentErrorsEx,BackendsErrors::BackendsErrorsEx);


		void endSchedule() raises (ComponentErrors::ComponentErrorsEx,BackendsErrors::BackendsErrorsEx);
		
		/**
		/**
		 * Call this method in order to read the total power from each input when the input are connected directly to the 50 Ohm. 
		 * Call this method in order to read the total power from each input when the input are connected directly to the 50 Ohm. 
		 * This method must be available also if the backend in the <i>busy</i> status.
		 * This method must be available also if the backend in the <i>busy</i> status.
+2 −2
Original line number Original line Diff line number Diff line
@@ -128,9 +128,9 @@ module Backends {


		void initialize(in string configuration) raises (ComponentErrors::ComponentErrorsEx,BackendsErrors::BackendsErrorsEx);
		void initialize(in string configuration) raises (ComponentErrors::ComponentErrorsEx,BackendsErrors::BackendsErrorsEx);


		void getConfiguration(out string configuration);
		string getConfiguration();


		void getCommProtVersion(out string version);
		string getCommProtVersion();
	};
	};
	
	
};
};
+2 −2
Original line number Original line Diff line number Diff line
@@ -128,9 +128,9 @@ module Backends {


		void initialize(in string configuration) raises (ComponentErrors::ComponentErrorsEx,BackendsErrors::BackendsErrorsEx);
		void initialize(in string configuration) raises (ComponentErrors::ComponentErrorsEx,BackendsErrors::BackendsErrorsEx);


		void getConfiguration(out string configuration);
		string getConfiguration();


		void getCommProtVersion(out string version);
		string getCommProtVersion();
	};
	};
	
	
};
};
+4 −0
Original line number Original line Diff line number Diff line
@@ -2,12 +2,16 @@
#define ACTIVESURFACEPROXY_H
#define ACTIVESURFACEPROXY_H


#include <ActiveSurfaceBossC.h>
#include <ActiveSurfaceBossC.h>
#include <lanC.h>
#include <usdC.h>


#include "ComponentProxy.h"
#include "ComponentProxy.h"


namespace ActiveSurface
namespace ActiveSurface
{
{
    PROXY_COMPONENT(ActiveSurfaceBoss);
    PROXY_COMPONENT(ActiveSurfaceBoss);
    PROXY_COMPONENT(lan);
    PROXY_COMPONENT(USD);
};
};


#endif
#endif
Loading