Commit da40f941 authored by Andrea Orlat's avatar Andrea Orlat
Browse files

Noto AllReceivers component completed. Nedd some, on-site, tests

parent c706802d
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -20,6 +20,10 @@
         
	<ErrorCode name="LocalOscillatorError" shortDescription="Cannot set the local oscillator" description=""/>
	
	<ErrorCode name="FocusSelectorError" shortDescription="Cannot access focus selector" description=""/>
	
	<ErrorCode name="AntennaUnitError" shortDescription="Cannot command antenna unit" description=""/>
	
	<ErrorCode name="UnavailableReceiverOperation" shortDescription="Could not execute receiver operation" description="">
		<Member name="ReceiverCode" type="string" description="mnemonic code of the receiver" />   
	</ErrorCode>
+1 −1
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@
ifeq ($(TARGETSYS),MED)
	USER_CFLAGS = -U 'COMPILE_TARGET_STANDARD' -U 'COMPILE_TARGET_NT' -D 'COMPILE_TARGET_MED'
else ifeq ($(TARGETSYS),NT)
	USER_CFLAGS = -U 'COMPILE_TARGET_STANDARD' -U 'COMPILE_TARGET_MED' -D 'COMPILE_TARGET_NT'
	USER_CFLAGS = -U 'COMPILE_TARGET_MED' -U 'COMPILE_TARGET_NT' -D 'COMPILE_TARGET_STANDARD'
else
	USER_CFLAGS = -U 'COMPILE_TARGET_MED' -U 'COMPILE_TARGET_NT' -D 'COMPILE_TARGET_STANDARD'
endif
+3 −1
Original line number Diff line number Diff line

//**************************************************************************************************************
//*   THIS FILE IS DEPRECATED...NOTO is now compiled under standard target
//**************************************************************************************************************

#define FS_ADDRESS "192.167.187.17"
#define FS_PORT 5002
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@
	Code="TotalPowerImpl"
	Type="IDL:alma/Backends/TotalPower:1.0"
	Container="TotalPowerContainer"
	Default="false"
	Default="true"
	KeepAliveTime="-1"
    ImplLang="cpp"
/>
+18 −0
Original line number Diff line number Diff line
<?xml version='1.0' encoding='ISO-8859-1'?>
<!--
   - History:
   -   
-->
<Component xmlns="urn:schemas-cosylab-com:Component: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"
              
	Name="NotoReceivers"
	Code="NotoReceiversImpl"
	Type="IDL:alma/Receivers/NotoAllReceivers:1.0"
	Container="FrontEndsContainer"
	KeepAliveTime="-1"
	Default="false"
    ImplLang="cpp"
/>
Loading