Commit d14a3a8b authored by Giuseppe Carboni's avatar Giuseppe Carboni
Browse files

Some updates

parent 03f7f1fa
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -78,10 +78,12 @@
/* define name and component interface */
/* ********************************** */
#define COMPONENT_NAME "MINORSERVO/Boss"              /* the name of the instantiation of the component */
#define COMPONENT_INTERFACE_TPYE "IDL:alma/MinorServo/MinorServoBoss:1.0"  /* the type of the interface */
#define COMPONENT_IDL_MODULE MinorServo	/* the IDL module that contains the component interface */
#define COMPONENT_IDL_INTERFACE MinorServoBoss  /* the IDL interface of the component */
#define COMPONENT_SMARTPOINTER MinorServoBoss_var /* the component type */
#ifndef COMPONENT_INTERFACE_TPYE
    #define COMPONENT_INTERFACE_TPYE "IDL:alma/MinorServo/MinorServoBoss:1.0"
#endif
/* ********************************** */

/* define user input command style */
+3 −0
Original line number Diff line number Diff line
@@ -69,6 +69,9 @@ _tui_MinorServoBossTextClient_LIBS = MinorServoBossStubs IRALibrary Managme
         TextWindowLibrary ClientErrors ComponentErrors ManagementErrors MinorServoErrors AntennaDefinitionsStubs \
		 MinorServoDefinitionsStubs

ifeq ($(STATION),SRT)
	MinorServoBossTextClient_CFLAGS = -DCOMPONENT_INTERFACE_TPYE="\"IDL:alma/MinorServo/SRTMinorServoBoss:1.0\""
endif

SCRIPTS         = minorservoBossTui

+1 −1
Original line number Diff line number Diff line
@@ -289,7 +289,7 @@ int main(int argc, char *argv[]) {
		status_box->setStatusLook(Management::MNG_OK,CStyle(BLACK_GREEN,CStyle::BOLD));
		status_box->setStatusLook(Management::MNG_WARNING,CStyle(BLACK_YELLOW,CStyle::BOLD));
		status_box->setStatusLook(Management::MNG_FAILURE,CStyle(BLACK_RED,CStyle::BOLD));
        _TW_SET_COMPONENT(motionInfo_field,18,3,23,1,CColorPair::WHITE_BLACK,CStyle::BOLD,output_label);
        _TW_SET_COMPONENT(motionInfo_field,18,3,30,1,CColorPair::WHITE_BLACK,CStyle::BOLD,output_label);

        /* ****************************************************************** */
        _TW_SET_COMPONENT(userInput,0,WINDOW_HEIGHT-6,WINDOW_WIDTH-1,1,USER_INPUT_COLOR_PAIR,USER_INPUT_STYLE,NULL);
+2 −3
Original line number Diff line number Diff line
@@ -6,10 +6,9 @@
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
              
    Name="M3R"    
    Code="WPServoImpl"
    Code="SRTGenericMinorServoImpl"
    ImplLang="cpp"
    Type="IDL:alma/MinorServo/WPServo:1.0"
    Type="IDL:alma/MinorServo/SRTGenericMinorServo:1.0"
    Container="MinorServoContainer"
	Default="true"

/>
+2 −2
Original line number Diff line number Diff line
@@ -6,9 +6,9 @@
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
              
    Name="PFP"    
    Code="WPServoImpl"
    Code="SRTProgramTrackMinorServoImpl"
    ImplLang="cpp"
    Type="IDL:alma/MinorServo/WPServo:1.0"
    Type="IDL:alma/MinorServo/SRTProgramTrackMinorServo:1.0"
    Container="MinorServoContainer"
	Default="true"

Loading